Questions tagged [video-library]

22 questions
4
votes
1 answer

CreateQueryWithOptions causes system interop Com exception

Ok so I have a simple uwp app where I am trying to get data from KnownFolders.VideoLibrary and to make it faster I am using indexing with QueryOptions. Strangely on the first load of the page I dont get any error, but when I try to drill into…
Muhammad Touseef
  • 4,357
  • 4
  • 31
  • 75
4
votes
2 answers

Streaming video library for C#

I'm looking at options for adding streaming video to a social web site written in ASP.NET/C#. I have a great deal of experience with Flash too, so I'm comfortable using FLV players, but I'd definitely go Silverlight if the right library is…
DavGarcia
  • 18,540
  • 14
  • 58
  • 96
4
votes
1 answer

Youtube audio uri exception using VideoLibrary (libvideo)

I have a code to extract audio url using VideoLibrary. But Video.Uri throws an exception. An invalid request URI was provided. The request URI must either be an absolute URI or BaseAddress must be set. I can't understand why this happens. How can…
Ali Tor
  • 2,772
  • 2
  • 27
  • 58
2
votes
1 answer

no api for file system even with broadFileAccess in uwp

I am trying to create a File Explorer like uwp app, it will be an app like traditional file explorer in windows 10 but it will mainly show only video files, so for that I want to use BroadFileAccess capability. Usually when I use a capability…
Muhammad Touseef
  • 4,357
  • 4
  • 31
  • 75
1
vote
1 answer

Android Xamarin Video Library download only Sound

I am Creating an Youtube to MP3 Downloader for Android in Xamarin / C#. I am using the VideoLibrary to download the Video. My Code: if (!string.IsNullOrEmpty(EditText.Text)) { byte[] bytes = null; …
BrainyXS
  • 116
  • 1
  • 8
1
vote
0 answers

VideoLibrary "GetDecryptionFunction failed"

When I try to download a yt video using VideoLibrary I get: GetDecryptionFunction failed var youTube = YouTube.Default; var video = youTube.GetVideo(link); File.WriteAllBytes((video.FullName + ".mp3"), video.GetBytes());
xpz
  • 31
  • 2
1
vote
1 answer

How can I download a video using VideoLib when it's Async?

Alright, here is my dilemma: I wanted to learn how to use NuGet, so I tested it out using a system called VideoLibrary(https://www.nuget.org/packages/VideoLibrary/). I successfully got it installed to my computer, and was finally got it working…
NicholaiRen
  • 196
  • 4
  • 15
1
vote
1 answer

uwp app AdvancedQuerySyntax for video file types

in my uwp app I am getting video files from KnownFolder.VideoLibrary and I am using QueryOptions to get them, so taking advantage of that I am trying to use AdvancedQuerySyntax so that I only get video files, but I am actually getting subtitle files…
Muhammad Touseef
  • 4,357
  • 4
  • 31
  • 75
1
vote
1 answer

iOS Swift - Not able to use video from Library

I'm trying to obtain a video from the library in my swift app. I'm using the following code snippet : print("ChatDetailsController - imgaction - Vid from Lib pressed") self.selection = "videoLib"; self.imgSelection = "vidFromLib" …
Mahmoud
  • 37
  • 6
1
vote
1 answer

libvideo get youtube video readable stream

I was wondering if there is a way to get the progress of a download for a youtube video using the libvideo for .net I'm downloading using the following code: var youtube = YouTube.Default; var video = youtube.GetVideo(link); string fileExt =…
Yaron
  • 173
  • 2
  • 12
1
vote
0 answers

Argument exception on URI parsing when downloading video

I'm not experienced with C#, but I got the basics down. Now I'm trying to download videos from YouTube with the Video Library (in the VS package manager: Install-Package VideoLibrary). using System; using System.Collections.Generic; using…
Nick
  • 11
  • 2
0
votes
0 answers

How to get nuget packages videolibrary (libvideo) to work with unity?

This may be a basic question but I am new to Visual studio and untiy. I have installed the videolibrary(https://github.com/omansak/libvideo) package using nuget package manager in Visual studio, but it keeps says reference not found when I add the…
0
votes
0 answers

videosdk library is opening back camera instead of front in iphone

I am using videosdk for video meeting in my website. Everything is working fine on Android and desktop but while using iPhone, it starts back camera instead of front camera. However, I have used facing mode as front. async function…
0
votes
1 answer

use node-video-lib with buffer

I'm trying to use the libary node-video-lib and get information about the video received on the server, But in the documentation I see examples of using a file from the file system only, this is the example from the documentation: const fs =…
Pessi S.
  • 63
  • 1
  • 6
0
votes
2 answers

Cannot access video library in UWP

I feel like I am missing something, but not sure what it is. I have two UWP apps which I have setup to use the video library as a temporary storage location. One app works fine and the other app says it does not have permission. From what I can…
CET
  • 262
  • 1
  • 2
  • 12
1
2