diff --git a/website/docs/data_formats/aria_vrs/aria_vrs_command_line.mdx b/website/docs/data_formats/aria_vrs/aria_vrs_command_line.mdx index 572b6288e..478fcb582 100644 --- a/website/docs/data_formats/aria_vrs/aria_vrs_command_line.mdx +++ b/website/docs/data_formats/aria_vrs/aria_vrs_command_line.mdx @@ -86,3 +86,7 @@ vrs copy original.vrs --to new.vrs --range 149002622 158702622 :::Note For more in-depth details feel free to explore this [VRS Cli Tool page](https://facebookresearch.github.io/vrs/docs/VrsCliTool). ::: + +## VRS tools installation + +Please follow our [VRS Tools installation guide](aria_vrs_tools_installation.mdx) diff --git a/website/docs/data_formats/aria_vrs/aria_vrs_tools_installation.mdx b/website/docs/data_formats/aria_vrs/aria_vrs_tools_installation.mdx new file mode 100644 index 000000000..da0a0eb6c --- /dev/null +++ b/website/docs/data_formats/aria_vrs/aria_vrs_tools_installation.mdx @@ -0,0 +1,26 @@ +--- +sidebar_position: 50 +title: VRS Tools installation +--- +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + +`VRS Tools` can easily be installed on your system using our prepackaged versions. + + + +```bash +# conda https://conda.io/projects/conda/en/latest/user-guide/install/index.html +conda install vrs +``` + + +```bash +# Pixi https://prefix.dev/ +# Local install +pixi add vrs +# Global install +# pixi global install vrs +``` + + diff --git a/website/docs/data_formats/aria_vrs/aria_vrsplayer.mdx b/website/docs/data_formats/aria_vrs/aria_vrsplayer.mdx new file mode 100644 index 000000000..11ad85778 --- /dev/null +++ b/website/docs/data_formats/aria_vrs/aria_vrsplayer.mdx @@ -0,0 +1,22 @@ +--- +sidebar_position: 40 +title: VRSPlayer +--- + +import Link from '@docusaurus/Link'; + +# The VRSPlayer App + +The `vrsplayer` application lets you "play" a VRS like a multi-stream video, with audio if an audio stream is present. + +![vrsplayer](/img/data_formats/aria_vrs/vrs_player_preview.png) + +## Open a file + +You can either play a file from the `File menu`, or using the command line `vrsplayer sample_file.vrs`. + +If you want to know more about VRSPlayer, please visit the [VRSPlayer VRS's documentation page](https://facebookresearch.github.io/vrs/docs/vrsplayer). + +## VRS tools installation + +Please follow our [VRS Tools installation guide](aria_vrs_tools_installation.mdx) diff --git a/website/static/img/data_formats/aria_vrs/vrs_player_preview.png b/website/static/img/data_formats/aria_vrs/vrs_player_preview.png new file mode 100644 index 000000000..52c4194bd Binary files /dev/null and b/website/static/img/data_formats/aria_vrs/vrs_player_preview.png differ