File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,12 @@ Links:
2222
2323## File Information
2424
25- ** Get codec details**
26-
2725Get codec details of a given video file e.g. "video.mp4":
2826
2927``` sh
3028ffprobe -v error -select_streams v:0 -show_entries stream=codec_name -of default=noprint_wrappers=1:nokey=1 video.mp4
3129```
3230
33- ** Overwrite the video title**
34-
3531Change the title of input.mp4 to "My Title"
3632
3733``` sh
@@ -62,6 +58,12 @@ Analyze video frames, timecode and metadata
6258ffmpeg -i input.mp4 -vf showinfo -f null -
6359```
6460
61+ Check if all mp4s in a folder are fine
62+
63+ ``` ps1
64+ Get-ChildItem -Filter "*.mp4" | ForEach-Object { Write-Host "Checking: $($_.Name)"; ffmpeg -v error -i $_.FullName -f null - 2>&1 | Where-Object { $_ -ne '' } | ForEach-Object { Write-Host $_ } }
65+ ```
66+
6567## Download video streams
6668
6769Locate the playlist file, e.g. using Chrome > F12 > Network > Filter: m3u8
You can’t perform that action at this time.
0 commit comments