VideoHelp Forum




Poll: Please take a look at the attached layout images and vote

+ Reply to Thread
Results 1 to 16 of 16
  1. After a long search, I finally found an amazing video crop app.
    https://crop.mov

    Features:
    ========
    ✔️ Free & Open Source
    ✔️ No software install
    ✔️ Cross platform / OS support
    ✔️ Works on any device [even Raspberry Pi]
    ✔️ Works in any browser
    ✔️ Simple UI with video preview
    ✔️ No watermarks
    ✔️ Privacy: your videos stay on your computer
    ✔️ Crop [free or preset], Trim, Flip [V/H], Mute Audio
    ✔️ Displays WxH Pixels during crop
    ✔️ Displays Frames during Trim
    ✔️ Uses FFmpeg Web Assembly

    Credit: https://github.com/mat-sz/crop
    Last edited by videoAI; 2nd Dec 2025 at 03:48.
    There is nothing wrong .. with my environment
    Quote Quote  
  2. Coming soon to my thread .. videoAI Crop

    Image
    [Attachment 90170 - Click to enlarge]
    Last edited by videoAI; 9th Dec 2025 at 13:23. Reason: Updated screen shot ..
    There is nothing wrong .. with my environment
    Quote Quote  
  3. Capturing Memories dellsam34's Avatar
    Join Date
    Jan 2016
    Location
    Member Since 2005, Re-joined in 2016
    Search PM
    Depends on how much degradation puts on the output file after rendering.
    Quote Quote  
  4. I am planning to release 6 micro apps in 2026.

    Stay tuned to this thread ..

    Image
    [Attachment 90027 - Click to enlarge]
    Last edited by videoAI; 2nd Dec 2025 at 03:29.
    There is nothing wrong .. with my environment
    Quote Quote  
  5. Last edited by videoAI; 9th Dec 2025 at 01:04. Reason: Updated new layout image
    There is nothing wrong .. with my environment
    Quote Quote  
  6. ffprobe false positive
    my post
    There is nothing wrong .. with my environment
    Quote Quote  
  7. Win11 Latest Update Includes A Free File Explorer Bug For Dark Mode
    win-11-latest-update-includes-a-free-file-explorer-bug-for-dark-mode

    If you're fed up with being an unpaid QA tester for Microsoft, I suggest giving Explorer++ a try.
    There is nothing wrong .. with my environment
    Quote Quote  
  8. Probe Score Explained

    The probe_score is a numerical value (ranging from 0 to 100) that indicates FFprobe's confidence in identifying the actual file type of a media file.

    Key Characteristics
    - Maximum Score: 100 - This means FFprobe is 100% confident the file extension matches the actual file type
    - Low Score: Indicates potential file type mismatch
    - Used during file type detection process

    How It Works
    1. FFprobe reads the first few seconds of a file
    2. It attempts to detect the actual file type
    3. Assigns a confidence score based on its analysis

    Practical Implications
    - High Probe Score (near 100): The file extension likely matches the true file type
    - Low Probe Score (below 50): The file might have a misleading extension or be incorrectly encoded

    Example Scenarios
    - A file named "video.mp3" might actually be an AAC file
    - The probe_score helps identify such discrepancies
    - If the score is low, you might want to:
    - Verify the file's true format
    - Use extended probing to get more information

    "format": {
    "filename": "C:\\T\\Test\\B$_1.eng.aac",
    "nb_streams": 1,
    "nb_programs": 0,
    "nb_stream_groups": 0,
    "format_name": "aac",
    "format_long_name": "raw ADTS AAC (Advanced Audio Coding)",
    "duration": "293.218506",
    "size": "5911505",
    "bit_rate": "161286",
    "probe_score": 51
    }
    There is nothing wrong .. with my environment
    Quote Quote  
  9. Rob Braxman on antivirus .. and why you don't need one,
    a very interesting video ..
    Why an Antivirus Does Nothing for You
    There is nothing wrong .. with my environment
    Quote Quote  
  10. Capturing Memories dellsam34's Avatar
    Join Date
    Jan 2016
    Location
    Member Since 2005, Re-joined in 2016
    Search PM
    I've been Anti-virus free for over 10 years.
    Quote Quote  
  11. Repost of an earlier post ..
    VMerge
    There is nothing wrong .. with my environment
    Quote Quote  
  12. I would like some good ideas related to potential functionality I can add
    to my Metadata Editor.

    I have 3 unused buttons as shown below ..

    Current existing features:

    1- Display Metadata for each file in a folder at lightning speed:
    [Title, comments, streams count & types, duration, bit rate, FPS, resolution, DAR, encoded by]

    2- Edit Metadata [Title, comments, encoded by (system)], fill the title tag with the file name in one click.

    3- Extract, before or after Metadata to JSON file

    4- Save Input media file with edited Metadata to output media file

    5- Support any input, video, audio, subtitle, image, text, attachment, etc [still experimental]

    6- Display executed ffmpeg command

    7- Remove problematic binary/data streams [ex: tmcd]

    8- Change output file name, suffix, folder, or full path

    9- Move selected file to your Desktop [for further processing]

    10- Delete selected file [with confirmation]

    11- Drag n Drop files or folders

    12- Basically, a more accurate Media Info replacement

    13- Display thumbnails of selected media files [Images, jpg/jpeg, gif, png, bmp, Videos, mp4, mkv, mov, avi, etc]

    And more ... any ideas, or feedback, will be appreciated .. thanks in advance.

    Image
    [Attachment 90105 - Click to enlarge]
    Last edited by videoAI; 7th Dec 2025 at 21:42.
    There is nothing wrong .. with my environment
    Quote Quote  
  13. ffprobe detects embedded images when they’re stored as attachment or attached_pic streams,
    and ffmpeg can extract those.

    If images are in MP4 'covr' atoms only, ffmpeg can't expose them; re-mux or use MP4-specific tools.

    Detect attachments (JSON):
    Code:
    ffprobe -v error -print_format json -show_format -show_streams "input.mp4"
    Quick inspect:
    Code:
    ffprobe -v error -print_format json -show_streams "input.mp4" | Out-String
    Look for "codec_type":"video" with "disposition": {"attached_pic":1}
    or "codec_name":"mjpeg"/"png"

    Extract attached picture (replace stream index 0:t:0 as needed):
    Code:
    ffmpeg -i "input.mp4" -map 0:t:0 -c copy "cover.jpg"
    If there's a video stream with attached_pic disposition:
    Code:
    ffmpeg -i "input.mp4" -map 0:v:0 -c copy "frame.jpg"
    If only covr atom (no attachment stream); re-mux or use external tools.

    Re-mux to MKV then re-check:
    Code:
    ffmpeg -i "input.mp4" -map 0 -c copy "tmp.mkv"
    ffprobe -v error -print_format json -show_streams "tmp.mkv"
    Or use mp4box / Atomic Parsley to extract 'covr' atoms.
    There is nothing wrong .. with my environment
    Quote Quote  
  14. Thumbnail Generation in Windows 11 Explorer

    Windows 11 uses an automated process to choose a preview frame that best
    represents the video's content, with minimal user control over frame selection.

    Mechanics
    - Automatic frame extraction near the beginning or middle of a video
    - Selects a visually representative frame
    - Depends on:
    1. Installed codecs
    2. File format
    3. System media settings
    Limitations
    - Not all video formats generate thumbnails equally
    - Thumbnail creation varies by:
    1. Codec compatibility
    2. File type support
    3. Installed media software
    Troubleshooting
    - Check Folder Options settings
    - Clear thumbnail cache
    - Verify codec installations
    - Ensure appropriate file format support
    There is nothing wrong .. with my environment
    Quote Quote  
  15. Coming soon to my thread .. videoAI Player

    Image
    [Attachment 90168 - Click to enlarge]
    There is nothing wrong .. with my environment
    Quote Quote  
  16. Added video thumbnails, in addition to image thumbnails, to Metadata Editor

    Image
    [Attachment 90163 - Click to enlarge]

    Image
    [Attachment 90164 - Click to enlarge]
    Last edited by videoAI; 9th Dec 2025 at 12:22.
    There is nothing wrong .. with my environment
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!