• 0 Posts
  • 13 Comments
Joined 2 months ago
cake
Cake day: July 12th, 2024

help-circle


  • Not for most duff you mentioned, but the adbreaks themselves:

    Our old dvr enabled us to skip ads in the recorded tv programs pretty accuratley. It set chapter markings whenever an ad-block began/ended which it figured out by the frequency of hard cuts as ads have them between every ad (so multiple times a minute) whlie normal programming usually does not. This was way pre-AI (like late 00s). Sadly the built in dvrs in our tvs after that did not have that function, but maybe there is a modern implimentation somewhere.





  • Du korrigiert syntax? Magst du das korrigieren, damit es in Speicherorten mit Ordnern die Leerzeichen im Namen haben funktioniert?

    #!/bin/bash
    while IFS= read -d $'\0' -r "dir" ; do 
          dir=${dir:2};
          echo "${dir}"\#;
          cd "'""${dir}""'" ;
          ls;
          ##etwas anderes am machen
         # cd  ..;
    done < <(find ./  -mindepth 1 -maxdepth 1 -type d -print0)