Skip to content

Commit 094a815

Browse files
committed
Removed opentimelineview a.k.a otioview and references to it in the documentation.
Signed-off-by: apetrynet <[email protected]>
1 parent 7f1ee9c commit 094a815

File tree

12 files changed

+24
-2233
lines changed

12 files changed

+24
-2233
lines changed

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,6 @@ There are more code examples here: https://github.com/AcademySoftwareFoundation/
135135
Also, looking through the unit tests is a great way to see what OTIO can do:
136136
https://github.com/AcademySoftwareFoundation/OpenTimelineIO/tree/main/tests
137137

138-
OTIO includes a viewer program as well (see the quickstart section for instructions on installing it):
139-
140-
![OTIO View Screenshot](docs/_static/otioview.png)
141-
142138
Developing
143139
----------
144140

@@ -197,4 +193,3 @@ Contact
197193
For more information, please visit http://opentimeline.io/
198194
or https://github.com/AcademySoftwareFoundation/OpenTimelineIO
199195
or join our discussion forum: https://lists.aswf.io/g/otio-discussion
200-

docs/_static/otioview.png

-792 KB
Binary file not shown.

docs/tutorials/otio-serialized-schema.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,24 @@ changes. If it needs to be updated and this file regenerated, run:
2929
```
3030
Adapters convert between OTIO and other formats.
3131
32-
Note that this class is not subclassed by adapters. Rather, an adapter is
33-
a python module that implements at least one of the following functions:
32+
Note that this class is not subclassed by adapters. Rather, an adapter is
33+
a python module that implements at least one of the following functions:
3434
35-
.. code-block:: python
35+
.. code-block:: python
3636
37-
write_to_string(input_otio)
38-
write_to_file(input_otio, filepath) (optionally inferred)
39-
read_from_string(input_str)
40-
read_from_file(filepath) (optionally inferred)
37+
write_to_string(input_otio)
38+
write_to_file(input_otio, filepath) (optionally inferred)
39+
read_from_string(input_str)
40+
read_from_file(filepath) (optionally inferred)
4141
42-
...as well as a small json file that advertises the features of the adapter
43-
to OTIO. This class serves as the wrapper around these modules internal
44-
to OTIO. You should not need to extend this class to create new adapters
45-
for OTIO.
42+
...as well as a small json file that advertises the features of the adapter
43+
to OTIO. This class serves as the wrapper around these modules internal
44+
to OTIO. You should not need to extend this class to create new adapters
45+
for OTIO.
4646
47-
For more information: https://opentimelineio.readthedocs.io/en/latest/tutorials/write-an-
47+
For more information: https://opentimelineio.readthedocs.io/en/latest/tutorials/write-an-
4848
adapter.html. # noqa
49-
49+
5050
```
5151

5252
parameters:
@@ -261,14 +261,14 @@ parameters:
261261
```
262262
Defines an OTIO plugin Manifest.
263263
264-
This is considered an internal OTIO implementation detail.
264+
This is considered an internal OTIO implementation detail.
265265
266-
A manifest tracks a collection of plugins and enables finding them by name
267-
or other features (in the case of adapters, what file suffixes they
268-
advertise support for).
266+
A manifest tracks a collection of plugins and enables finding them by name
267+
or other features (in the case of adapters, what file suffixes they
268+
advertise support for).
269+
270+
For more information, consult the documentation.
269271
270-
For more information, consult the documentation.
271-
272272
```
273273

274274
parameters:
@@ -287,8 +287,8 @@ parameters:
287287

288288
```
289289
A class of plugin that is encoded in a python module, exposed via a
290-
manifest.
291-
290+
manifest.
291+
292292
```
293293

294294
parameters:

docs/tutorials/quickstart.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
11
# Quickstart
22

3-
This is for users who wish to get started using the "OTIOView" application to inspect the contents of editorial timelines.
4-
53
**Note** This guide assumes that you are working inside a [virtualenv](https://virtualenv.pypa.io/en/latest/).
64

7-
## Install Prerequisites
8-
9-
OTIOView has an additional prerequisite to OTIO:
10-
11-
- Try `python -m pip install PySide2` or `python -m pip install PySide6`
12-
- If difficulties are encountered, please file an issue on OpenTimelineIO's github for assistance.
13-
145
## Install OTIO
156

167
- `python -m pip install opentimelineio`
@@ -24,11 +15,11 @@ A curated list of adapters for popular file formats like EDL, AAF, ALE, and FCP
2415
For more information, see the [Adapters](./adapters) section.
2516

2617

27-
## Run OTIOView
18+
## OTIO-stat
2819

2920
Once you have pip installed OpenTimelineIO, you should be able to run:
3021

31-
+ `otioview path/to/your/file.edl`
22+
+ `otiostat path/to/your/file.otio`
3223

3324
# Developer Quickstart
3425

setup.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,6 @@ def _append_version_info_to_init_scripts(build_lib):
237237

238238
for module, parentdir in [
239239
("opentimelineio", "src/py-opentimelineio"),
240-
("opentimelineview", "src")
241240
]:
242241
target_file = os.path.join(build_lib, module, "__init__.py")
243242
source_file = os.path.join(
@@ -336,8 +335,7 @@ def run(self):
336335
},
337336

338337
packages=(
339-
find_packages(where="src/py-opentimelineio") + # opentimelineio
340-
find_packages(where="src") # opentimelineview
338+
find_packages(where="src/py-opentimelineio") # opentimelineio
341339
),
342340

343341
ext_modules=[
@@ -352,7 +350,6 @@ def run(self):
352350

353351
package_dir={
354352
'opentimelineio': 'src/py-opentimelineio/opentimelineio',
355-
'opentimelineview': 'src/opentimelineview',
356353
},
357354

358355
# Disallow 3.9.0 because of https://github.com/python/cpython/pull/22670
@@ -367,7 +364,6 @@ def run(self):
367364
'otiopluginfo = opentimelineio.console.otiopluginfo:main',
368365
'otiostat = opentimelineio.console.otiostat:main',
369366
'otiotool = opentimelineio.console.otiotool:main',
370-
'otioview = opentimelineview.console:main',
371367
(
372368
'otioautogen_serialized_schema_docs = '
373369
'opentimelineio.console.autogen_serialized_datamodel:main'
@@ -381,10 +377,6 @@ def run(self):
381377
'coverage>=4.5',
382378
'urllib3>=1.24.3'
383379
],
384-
'view': [
385-
'PySide2~=5.11; platform.machine=="x86_64"',
386-
'PySide6~=6.2; platform.machine=="aarch64"'
387-
]
388380
},
389381

390382
# because we need to open() the adapters manifest, we aren't zip-safe

src/opentimelineview/__init__.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)