Sep 09 2023 09:27 PM - edited Sep 09 2023 09:43 PM
The new Stream Webpart has just come through to our tenant and started to set it up to see how it actually works. Quite disappointing so far, and not fit for purpose in our video architecture.
I was hoping for something similar to the Highlighted Content Webpart where you have a lot of sources, filtering and sorting options, etc. Would have liked to see Microsoft use this as a base, and retrofit the ability to play videos inline, additional display options such as Gallery (which they have) and Playlist (which is apparently coming soon).
As part of the migration from Stream (Classic) to Stream (on SharePoint) we are looking to upload all our videos to Document Libraries without folders and use metadata for Channels, Categories, etc. This way we can associate our videos to multiple Channels which we wouldn't be able to do with folders. Also, a flat architecture is a much better option for effective filtering, searching, etc.
However, the only source options available where we could limit what videos are displayed are using Folder. So, for us, we can't use the new Stream Webpart at all for displaying our videos by Channel, Category, etc. You also can't select multiple sites or sites associated to a hub to return videos from. Only from this site, or a single site. Highlighted Content Webpart allows you to select multiple sites which again is something we need.
Stream Webpart
Highlighted Content Webpart (a lot of filtering options regardless of what source you select)
Also, when selecting Folder or Single video and you want to get from another site, it only shows recent or favorited sites (and not all of them) with no ability to search for and select a specific site. This is a real painful experience where you have to go out to the site you want to select first a few times and hope it shows up for you to select. This is also noted in the following post: New Stream Web Part - Source > Folder > From Sites > Only shows recent shared libraries - Microsoft ...
The new Stream Webpart also currently has very limited Sorting options available.
Stream Webpart
Highlighted Content Webpart
Looks like we're stuck with File and Media Webpart for single videos, and Highlighted Content Webpart for multiple videos for the foreseeable future.
Really hoping to see the new Stream Webpart get some much-needed improvements over the next few months!! Microsoft, any plans for implementing any of these missing features?
Sep 11 2023 11:14 AM
Sep 13 2023 05:31 AM
Sep 13 2023 06:17 AM
Sep 13 2023 01:04 PM
Sep 14 2023 08:04 AM
Sep 14 2023 08:05 AM
Sep 16 2023 06:27 AM
Sep 16 2023 06:33 AM - edited Sep 16 2023 06:33 AM
I've just added another post that goes through the Playlist options (good and bad). Still not something we are looking to use, especially given the size of our company (50,000+ users) and the large number of groups/channels/videos.
Sep 18 2023 05:31 AM
Sep 20 2023 09:07 AM
Very useful post. I'm hoping that @Marc Mroz and team are thinking this is just the first iteration of the Stream Webpart with improvements you outlined coming soon.
Nov 03 2023 11:33 AM
@Debaray In our case the Highlighted Content web part would do everything we need it to do EXCEPT that you can't pull from OneDrive--only other SharePoint sites. We are storing most of our videos in OneDrive because of SharePoint storage limitations (not to mention OneDrive is where Teams recordings save by default). I was glad to see the new Stream web part had an option to pull from a OneDrive folder, but the lack of ability to filter makes it useless to us. Please either build in a OneDrive option to the Highlighted Content web part, or give the Stream web part the same filtering functionality as the Highlighted Content web part!
Nov 03 2023 12:18 PM
Why would you store large amounts of files in OneDrive because of storage? The amount of storage in your tenant that is displayed in the SharePoint Admin Center is the total storage used by OneDrive AND SharePoint (because OneDrive accounts behind the covers are SharePoint sites). If you need any SharePoint sites to have more storage space and they don't, then your SharePoint administrator should consider following Microsoft recommendations to allow automatic sizing of SharePoint sites in the admin center.
In the event that you might be the SharePoint Administrator, here is where that is located in your admin center. Policies > SharePoint Site Storage limits
A panel will open on the right side of the screen. Select Automatic.
This is a best practice even without videos being stored. I have seen more SharePoint sites blow up where users are unable to continue collaborating because SharePoint admins rarely have time to be monitoring every single site to see if any have come close to exceeding whatever limit they put in there. This will solve your problem. Then you can move your files to a SharePoint site and the Highlighted Content web part will work for you.
Besides. . . putting files in OneDrive accounts are a problem with file lifecycle management. If someone leaves the organization and you want to remove the license on the account, then all access to those files are lost on your web pages also. On the SharePoint site, you won't have that issue to contend with down the road.
Nov 03 2023 01:21 PM
Nov 03 2023 01:57 PM
Nov 03 2023 02:34 PM
Nov 03 2023 11:22 PM
Nov 04 2023 05:18 AM
@tjhunt Some great news for you. The Highlighted Content Webpart can bring videos from OneDrive now using the KQL Query option.
Make sure you select All sites initially, then click on Custom query. This will bring up the KQL Query section where you can specify where you want to pull videos from as well as other filters. Below is a query that brings back videos from a folder in my OneDrive called Videos (it contains 4 videos).
//You would need to put your tenant in place of TENANT
//You would need to put your userPrincipalName in place of USERPRINCIPALNAME
//You would need to put your specific folder(s) in place of FOLDER
//Note that you need to add /* at the end of your last folder
documentlink:"https://TENANT-my.sharepoint.com/personal/USERPRINCIPALNAME_TENANT_onmicrosoft_com/Documents/FOLDER/*" AND (FileType:3gp OR FileType:asf OR FileType:avi OR FileType:mkv OR FileType:mod OR FileType:mov OR FileType:mp4 OR FileType:mpeg OR FileType:mpg OR FileType:mts OR FileType:ts OR FileType:vob OR FileType:wmv OR FileType:webm)
Below are my four videos in the Videos folder.
And my Highlighted Content Webpart showing the videos.
Nov 09 2023 06:29 AM
Apr 12 2024 11:54 PM
@tjhunt I know it's been a while since your reply, but thought it was worth adding the below so that yourself, or others can see how to reduce versions on lists and libraries. See examples below taken from the PnP PowerShell site: Set-PnPList | PnP PowerShell
#You would replace TENANT with your tenant, and SITE with your site
Connect-PnPOnline -Url "https://TENANT.sharepoint.com/sites/SITE" -Interactive
#Disable versions
Set-PnPList -Identity "Demo Library" -EnableVersioning $false
#Limit major versions (minimum of 1 version)
Set-PnPList -Identity "Demo Library" -EnableVersioning $true -MajorVersions 20
#Limit major and minor verions (minimum of 1 version for major and minor)
Set-PnPList -Identity "Demo Library" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5
Note that if you have a document that contains (for example) 10 versions, and you run the script to reduce versions to 5, that document will still have 10 versions until you update it again. So, reducing versions on the list/library won't automatically reduce the current versions for an item/document that are above what you set.