VideoHelp Forum




+ Reply to Thread
Page 98 of 99
FirstFirst ... 48 88 96 97 98 99 LastLast
Results 2,911 to 2,940 of 2952
  1. Here is the audio file that clever can't load .. for your testing
    [removed]
    Originally Posted by ProWo View Post
    Could you upload this video to a hoster and post the download link here?
    Last edited by videoAI; 2nd Nov 2025 at 15:29.
    There is nothing wrong .. with my environment
    Quote Quote  
  2. Originally Posted by videoAI View Post
    Here is the audio file that clever can't load .. for your testing
    https://anonfile.co/eFwtWrjJg7wtdro/file
    Link is dead.
    Page not found...
    Quote Quote  
  3. @ Prowo

    When you drop files into the mux grid, an existing movie title is displayed. If there is no title, you want to automatically insert the file name as the title. That's good.
    Can you add a checkbox before the movie title? If it is checked, the movie title is muxed, if not, it is not. However, they are always displayed on the mux page.

    When you drop files with different file names into the mux grid, the stream selection automatically switches to first. That makes sense. However, the movie title of the last file dropped is then displayed. See screenshot. That is confusing.
    Wouldn't it be better if the movie title was only displayed for the selected video stream with the lowest index number?

    Image
    [Attachment 89530 - Click to enlarge]
    Quote Quote  
  4. Originally Posted by Findu View Post
    Can you add a checkbox before the movie title? If it is checked, the movie title is muxed, if not, it is not.
    When you drop files with different file names into the mux grid, the stream selection automatically switches to first. That makes sense. However, the movie title of the last file dropped is then displayed. See screenshot. That is confusing.
    Wouldn't it be better if the movie title was only displayed for the selected video stream with the lowest index number?
    This is alreday fixed in the nightly I'm working on.
    Quote Quote  
  5. try
    [Removed]

    Originally Posted by ProWo View Post
    Originally Posted by videoAI View Post
    Here is the audio file that clever can't load .. for your testing
    Link is dead.
    Page not found...
    Last edited by videoAI; 2nd Nov 2025 at 17:29.
    There is nothing wrong .. with my environment
    Quote Quote  
  6. Originally Posted by videoAI View Post
    Image
    [Attachment 89540 - Click to enlarge]


    Please test the link before posting it.
    Quote Quote  
  7. @proWo
    pls let me know when you have it .. so I can stop uploading it

    changed the name:
    [X]

    [X]

    or

    [X]

    Image
    [Attachment 89541 - Click to enlarge]


    Originally Posted by ProWo View Post
    Please test the link before posting it.
    Last edited by videoAI; 3rd Nov 2025 at 05:53.
    There is nothing wrong .. with my environment
    Quote Quote  
  8. I have .. every time ..

    not only I tested it .. I downloaded again as well ..

    Image
    [Attachment 89542 - Click to enlarge]


    File is removed by site ..
    [I don't like uploading files]

    Originally Posted by ProWo View Post
    Please test the link before posting it.
    Last edited by videoAI; 3rd Nov 2025 at 05:55.
    There is nothing wrong .. with my environment
    Quote Quote  
  9. Zip it with a password.
    Quote Quote  
  10. did you get it?
    Originally Posted by ProWo View Post
    Zip it with a password.
    There is nothing wrong .. with my environment
    Quote Quote  
  11. lets try

    another service
    https://www.hostize.com/v/amFBnNFGH5

    zipped no pass
    [X]

    Originally Posted by ProWo View Post
    Zip it with a password.
    Last edited by videoAI; 3rd Nov 2025 at 05:51.
    There is nothing wrong .. with my environment
    Quote Quote  
  12. Question for everyone
    is there any decent, free, no email, no account, no signup file sharing service out there ??
    There is nothing wrong .. with my environment
    Quote Quote  
  13. @ ProWo

    At scene changes, tests:

    On average, the 15 minute F1 sample has every 2 seconds an I frame.

    v3.4.7
    When I use treshold 0,35, I get 20 chapters, 12 of them between minute 12:53 and 14:34

    12:53
    12:58
    13:10
    13:15
    13:25
    13:30
    13:31
    13:41
    14:11
    14:16
    14:34
    14:43

    The shortest one is only 1 second long.

    v3.4.7.01
    When I use treshold 0,35, I get 15 chapters, 7 of them between minute 12:53 and 14:34

    12:53
    13:10
    13:25
    13:41
    14:11
    14:34
    14:43

    The shortest one is only 9 seconds long.

    So it's getting better, but there are still too many short chapters in a minute and a half.
    Quote Quote  
  14. A script to find all instances of ffmpeg, ffplay, ffprobe,
    list them in console, and save list to a csv file on user's desktop

    Code:
    # ------------------------------------------------------------------------
    # Script      : find-ffmpeg.ps1
    # Description : A script to find all instances of ffmpeg, ffplay, ffprobe, 
    # list them in console, and save list to a csv file on user's desktop
    # Author      : videoAI
    # Date        : Nov 2, 2025
    # ------------------------------------------------------------------------
    $ffmpegExecutables = @("ffmpeg.exe", "ffplay.exe", "ffprobe.exe")
    $results = Get-ChildItem -Path C:\ -File -Recurse -ErrorAction SilentlyContinue | 
        Where-Object { $ffmpegExecutables -contains $_.Name } |
        Select-Object FullName, 
            #@{Name='FileName';Expression={$_.Name}}, 
            @{Name='FileSizeMB';Expression={"{0:N2}" -f ($_.Length / 1MB)}}
    CLS
    # Display formatted list in console
    $results | Format-List
    
    # Export to CSV
    $results | Export-Csv -Path "$env:USERPROFILE\Desktop\ffmpeg_executables.csv" -NoTypeInformation
    
    # Display total count
    Write-Host "Total FFmpeg Executables Found: $($results.Count)"
    Image
    [Attachment 89547 - Click to enlarge]
    There is nothing wrong .. with my environment
    Quote Quote  
  15. ## AAC Codec Channel Information Storage

    In the AAC codec, channel information is stored in the audio stream's
    audio object type (AOT) and channel configuration field within the Audio
    Specific Config (ASC) or stream header. Specifically:

    | Component | Channel Information Storage |
    |-----------|------------------------------|
    | Location | Audio Specific Config (ASC) |
    | Field | Channel Configuration |
    | Encoding | Predefined numeric values |
    | Standard | ISO/IEC 14496-3 specification |

    ### Channel Configuration Mapping
    The channel configuration is typically represented by a numeric
    value that indicates the channel layout:
    - 0: Specific configuration (defined in the audio specific config)
    - 1: 1 channel (mono)
    - 2: 2 channels (stereo)
    - 3: 3 channels
    - 4: 4 channels
    - 5: 5 channels
    - 6: 5.1 channels
    - 7: 7.1 channels

    ### Technical Details
    The channel configuration is part of the audio object type (AOT) in the stream's metadata.
    When decoding an AAC file, codecs and media players read this field to understand the audio
    channel layout and properly decode the audio stream.
    There is nothing wrong .. with my environment
    Quote Quote  
  16. @ProWo

    Have you managed to download and ...... open the audio file in Clever??

    Originally Posted by ProWo View Post
    Zip it with a password.
    There is nothing wrong .. with my environment
    Quote Quote  
  17. How do I convert ASS subs to PGS/SUP in Clever FFMpeg Gui. FFMpeg has that feature.
    Quote Quote  
  18. Originally Posted by videoAI View Post
    Have you managed to download and ...... open the audio file in Clever??
    Yes and no.
    I was able to extract the aac stream from the mp4 container, but it has probably been deliberately manipulated.
    ffmpeg cannot do anything with the stream.
    I think that the first frame is compromised and the following ones are OK.
    This explains why the mp4 can be played on some players that do not strictly adhere to the standard.

    EDIT:
    Found a way to repair it:

    1) extract the aac
    ffmpeg -i AAA.mp4 -c copy output.aac

    2) Fire up VLC player, click Media, Convert/Save.
    Click add to add your aac file, click Convert/Save.
    On profile, click the Create a new profile button, set wav, name it pcm.
    Select this new pcm profile, click destination file, browse.
    Insert the name of your new output file and click start.
    Wait until is finished.

    3) Convert this wav to whatever you want and mux the result with your videostream.
    Last edited by ProWo; 4th Nov 2025 at 09:58.
    Quote Quote  
  19. I am suspecting some sort of Apple/iTunes protection.

    Clever 'scan for errors' shows this on the audio track
    [aist#0:0/aac @ 00000271b8c4e740] [dec:aac @ 00000271b8c519c0]
    Error while opening decoder: Operation not permitted
    Error opening output file -.
    Error opening output files: Operation not permitted
    online services show access denied or Operation not permitted.

    Shutter Encoder shows Operation not permitted:

    Image
    [Attachment 89557 - Click to enlarge]


    Originally Posted by ProWo View Post
    I think that the first frame is compromised and the following ones are OK.
    There is nothing wrong .. with my environment
    Quote Quote  
  20. @ProWo
    v3.4.7.02 feedback

    The file name -> movie title works great .. thank you for adding it in.

    Can the title checkmark be defaulted to on? you can still change the
    title text for every file name while the checkmark is defaulted to ON.

    Which brings me to the elephant in the room .. Profiles
    Clever needs Profiles [expanded, complete save sets]

    Think about it, clever already can:
    - save to, read from config files
    - saves some [but not all] settings and checkmarks for V/A/S/CH to a save set

    Why not expand this functionality and save multiple sets and call them profiles.
    you can give these profiles numbers or names. And all of them can be saved in
    the config file or in another file.. say profiles.cfg

    To start, every existing checkmark and toggle [on/off] setting can be saved in
    a profile. The current settings page can have a drop down of profiles to select a
    default one from.

    The changes to your code can be incremental, and phased in slowly one feature at
    a time. I think it is worth the effort.

    As always .. thank you for your efforts and keep up the great work.
    There is nothing wrong .. with my environment
    Quote Quote  
  21. @ ProWo

    v3.4.7.02 feedback

    At scene changes - I have repeated several tests:
    The new changes provide useful results for the F1 and Fast10 examples, as well as for other videos and movies.
    Excellent work, ProWo!
    Thank you very much!
    This feature is now useful!

    With the number of chapters created info, you can directly estimate if you need an other scan ot not. Thanks for adding!

    The threshold is now set to 0,5 by default, but text is telling 0–0,4 is recommended!?
    How about making the chapters “Create file” button green?
    And why not using the same red from Add chapter also for Deactivate?
    As Video duration is just a general information I still would swap it with Integration with muxing.
    How about adding the number of created files to Integration with muxing. Everything at a glance.
    And could you display the multiplex success message before asking whether to keep the chapter text or not?

    Image
    [Attachment 89561 - Click to enlarge]


    EDIT:
    Problem: when a file has a global title and you mux it while Title is not checked, the global title get cleared from the file/metadata.
    Last edited by Findu; 4th Nov 2025 at 02:40.
    Quote Quote  
  22. How do I do this in Clever FFMpeg GUI to generate subs.idx,subs.sub


    ffmpeg -i video.mkv -vf subtitles=subtitle.ass -an -sn -f vobsub subs
    Quote Quote  
  23. @ ProWo

    v3.4.7.02 feedback

    Found the hiccup. The green HDR info text at the top is not longer displayed at the “Video Encoding” page after opening the Multiplex page.
    Quote Quote  
  24. Originally Posted by mac969 View Post
    How do I do this in clever FFMpeg-GUI to generate subs.idx,subs.sub
    ffmpeg -i video.mkv -vf subtitles=subtitle.ass -an -sn -f vobsub subs
    ffmpeg cannot convert text subtitles into bitmap subtitles.
    Use subtitleedit for this.
    Quote Quote  
  25. Originally Posted by Findu View Post
    The threshold is now set to 0,5 by default, but text is telling 0–0,4 is recommended!?
    How about making the chapters “Create file” button green?
    And why not using the same red from Add chapter also for Deactivate?
    As Video duration is just a general information I still would swap it with Integration with muxing.
    How about adding the number of created files to Integration with muxing. Everything at a glance.
    And could you display the multiplex success message before asking whether to keep the chapter text or not?
    When a file has a global title and you mux it while Title is not checked, the global title get cleared from the file/metadata.
    Thx for the hints, will be implemented/fixed.
    Quote Quote  
  26. Originally Posted by videoAI View Post
    Which brings me to the elephant in the room .. Profiles
    Clever needs Profiles [expanded, complete save sets]
    The idea isn't bad, but I'm afraid it would overwhelm many users.
    Even now, the multiplexing page is quite complex, for example.
    The main task for clever FFmpeg-GUI should be to make ffmpeg simple and easy to use.

    btw:
    reread post #2928
    Last edited by ProWo; 4th Nov 2025 at 10:43.
    Quote Quote  
  27. Originally Posted by Findu View Post
    Found the hiccup. The green HDR info text at the top is not longer displayed at the “Video Encoding” page after opening the Multiplex page.
    This is alreday fixed in the nightly I'm working on.
    Quote Quote  
  28. @ ProWo

    v3.4.7.02 feedback

    Audio encoding, Channels (change. split. join). Use periods instead of commas.

    At the page itself you use "Extract streams", just like on the other pages. On the Main page button it is "Extract Strames" with a capital S.

    Would it be useful to offer a feature that automatically fills in the empty “Title” field with the country name if the "Language" field contains a valid entry for audio and subtitle streams, as in the ISO 639-2 table?
    On older devices and players, the abbreviations and country names may appear in the selection.

    The selection is combined. It displays the code table and fills in the empty title fields. If the check mark is removed, the table closes and the titles get deleted.

    Image
    [Attachment 89563 - Click to enlarge]
    Quote Quote  
  29. Interesting .. thx 4 sharing

    Originally Posted by ProWo View Post
    Found a way to repair it:

    1) extract the aac
    ffmpeg -i AAA.mp4 -c copy output.aac

    2) Fire up VLC player, click Media, Convert/Save.
    Click add to add your aac file, click Convert/Save.
    On profile, click the Create a new profile button, set wav, name it pcm.
    Select this new pcm profile, click destination file, browse.
    Insert the name of your new output file and click start.
    Wait until is finished.

    3) Convert this wav to whatever you want and mux the result with your videostream.
    There is nothing wrong .. with my environment
    Quote Quote  
  30. @ProWo
    v3.4.7.02 feedback

    FYI,
    Issue: 0-channel AAC Audio stream loads into clever, can multiplex with AVC video stream,
    outputs 0 size mp4 file with no errors, warnings, or fail message.

    Image
    [Attachment 89568 - Click to enlarge]


    To duplicate issue:

    1- Extract video, audio stream separately as shown:

    Code:
    ffmpeg -i input.mp4 -map 0:v:0 -c copy output.mp4
    ffmpeg -i input.mp4 -c copy output.aac
    2- Each stream can be loaded in Clever separately, successfully as shown:

    Image
    [Attachment 89569 - Click to enlarge]

    Image
    [Attachment 89570 - Click to enlarge]

    ** note: Audio stream loads with 0 channels

    3- Try to Mux them, no complaints from Clever:

    Image
    [Attachment 89571 - Click to enlarge]


    4- Result is unusable, 0 size file, with no errors, warnings, or fail message.

    Image
    [Attachment 89568 - Click to enlarge]
    There is nothing wrong .. with my environment
    Quote Quote  



Similar Threads

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