Skip to content

Commit

Permalink
Merge pull request #1983 from magland/neurosift-avi
Browse files Browse the repository at this point in the history
Add Neurosift service for AVI files
  • Loading branch information
yarikoptic committed Aug 20, 2024
2 parents b09459d + 5a521bb commit 62442c9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions web/src/views/FileBrowserView/FileBrowser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,13 @@ const EXTERNAL_SERVICES = [
regex: /\.nwb.lindi.json$/,
maxsize: Infinity,
endpoint: 'https://neurosift.app?p=/nwb&url=$asset_dandi_url$&st=lindi&dandisetId=$dandiset_id$&dandisetVersion=$dandiset_version$', // eslint-disable-line max-len
},
{
name: 'Neurosift',
regex: /\.avi$/,
maxsize: Infinity,
endpoint: 'https://neurosift.app?p=/avi&url=$asset_dandi_url$&dandisetId=$dandiset_id$&dandisetVersion=$dandiset_version$', // eslint-disable-line max-len
}
];
type Service = typeof EXTERNAL_SERVICES[0];
Expand Down

0 comments on commit 62442c9

Please sign in to comment.