Skip to content

Releases: video-db/videodb-node

Release v0.1.1

02 May 04:14
3a85d2a
Compare
Choose a tag to compare

Added

  • Support for Multiple Collections
    • Create New Collection : Connection.createCollection()
    • Get all Collections : Connection.getCollections()
    • Get a Collection : Connection.getCollection()
    • Update a Collection : Connection.updateCollection()

Release v0.1.0

21 Mar 08:00
ccb4b75
Compare
Choose a tag to compare

Added

  • Scene Search
    • Index Videos on Scene using Video.indexScenes()
    • Get Scenes Data using Video.getScenes()
    • Search in Video using Video.search() on basis of scenes (pass searchType = "scene")

Note: Collection Scene Search is not available

Changed

  • Deprecate TextStyle with TextStyleProps
    • Instead of a accepting Instance of TextStyle class, TextAsset now accepts an object of type Partial<TextStyleProps>
  • Deprecate SubtitleStyle with SubtitleStyleProps
    • Instead of a accepting Instance of SubtitleStyle class, Video.addSubtitle now accepts an object of type Partial<SubtitleStyleProps>
  • Deprecate indexType param in Video.indexSpokenWords()

Release v0.0.4

07 Mar 17:48
b08f013
Compare
Choose a tag to compare

Added

  • Image class
    • Upload image using Collection.upload()
    • Get an image using Collection.getImage()
    • Get all images using Colection.getImages()
    • Delete image using Collection.deleteImage() or Image.delete()
  • ImageAsset class
    • Create a ImageAsset using ImageAsset() class
    • Overlay ImageAsset in timeline using Timeline.addOverlay()
  • TextAsset & TextStyle class
    • Create a TextAsset using TextAsset() class
    • Configure styling of TextAsset using TextStyle()
  • SubtitleStyle
    • Configure subtitle styling by passing a SubtitleStyle in Video.addSubtitle()
  • Keyword Search
    Search using Keyword in Video using Video.search() (pass searchType = "keyword")

Note: Collection Keyword Search is not available

Changed

  • Video.index() -> Video.indexSpokenWords()
  • param type -> searchType in Video.search()
  • param type -> searchType in Collection.search()

Fixed

  • Pass undefined params as null to VideoDB Server API

Release v0.0.3

13 Feb 05:16
89b22b2
Compare
Choose a tag to compare

Added

  • Concept of Audio Files 🔈
  • Concept of MediaAsset : VideoAsset, AudioAsset 💼
  • Concept of Timeline for editing workflows ✂️
  • Export VideodbError
  • Minor updates in readme & package.json

Changed

  • Http client timeout 30s -> 60s

Fixed

  • Better Error handling
  • Param validation in
    • Coll.getVideo()
    • Coll.getAudio()
    • Coll.getVideo()
    • Coll.deleteAudio()

Release v0.0.3-beta.1

04 Feb 17:04
3167547
Compare
Choose a tag to compare
Merge pull request #4 from video-db/release

chore(release): v-0.0.3-beta.1

v0.0.2

24 Jan 17:51
Compare
Choose a tag to compare
  • Upload through file and external links - supports YouTube for now.
  • Semantic Index : Index & search spoken content.
  • Editing: Add subtitle to videos with default style.
  • Search across collections [supports a default collection for now]
  • Video and Collection object access without saving.
  • playStream function to get playable video links.