Changes between Version 48 and Version 49 of Concatenate
- Timestamp:
- Jul 20, 2023, 7:26:58 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Concatenate
v48 v49 56 56 57 57 {{{ 58 foreach ($i in Get-ChildItem .\*.wav) {echo "file '$i'" >> mylist.txt} 59 }}} 60 61 * Note: if you do this, you need to open the text file after its creation and 'Save As...' with UTF-8 encoding in order for the demuxer to work, otherwise you will get an error when FFmpeg tries reading the file because Windows by default saves with UTF-16 encoding. 58 foreach ($i in Get-ChildItem .\*.wav) {"file '$i'" | Out-File mylist.txt -Encoding utf8 -Append} 59 }}} 62 60 63 61 Or for Windows bat-file:
