Posts

Showing posts from May, 2023

Best setting for OBS Studio to record Youtube Vedios

 To optimize OBS Studio for recording videos for YouTube, you can follow these general settings: 1. Open OBS Studio and go to "Settings" in the lower-right corner. 2. In the "Settings" window, select the "Output" tab. 3. Under "Output Mode," select "Advanced." 4. In the "Recording" section, choose the following settings:    - Set "Recording Format" to MP4.    - Set "Type" to Standard.    - Set "Encoder" to either x264 or NVENC (if you have a compatible NVIDIA GPU).    - Set "Recording Quality" to your desired level. A balance between quality and file size is usually recommended (e.g., CQP at 20-23). 5. In the "Audio" section, choose your preferred audio settings:    - Select the appropriate audio device for your microphone in the "Recording Device" dropdown.    - Set the desired audio bitrate, typically 128-192 kbps. 6. Go to the "Video" tab.    - Set the &q

How to monitor Azure resources

# Connect to Azure Connect-AzAccount # Function to get disk details function Get-DiskDetails {     param (         [Parameter(Mandatory=$true)]         [string]$ManagedDiskId     )          $diskName = (Get-AzResource -ResourceId $ManagedDiskId).Name     $resourceGroup = (Get-AzResource -ResourceId $ManagedDiskId).ResourceGroupName          $disk = Get-AzDisk -ResourceGroupName $resourceGroup -DiskName $diskName     return $disk } # Output file path $outputFilePath = "C:\Path\to\output.html" # Start HTML file content $htmlContent = @" <!DOCTYPE html> <html> <head> <style> table {     font-family: Arial, sans-serif;     border-collapse: collapse;     width: 100%; } td, th {     border: 1px solid #dddddd;     text-align: left;     padding: 8px; } th {     background-color: #dddddd; } </style> </head> <body> "@ # Get all VMs $vms = Get-AzVM # Add table headers to HTML content $htmlContent += "<table>" $htmlConte