Jump to content
LaunchBox Community Forums

Max_CH

Members
  • Posts

    2
  • Joined

  • Last visited

Max_CH's Achievements

1-Bit Wonder

1-Bit Wonder (1/7)

1

Reputation

  1. I use this one for Windows PowerShell (adjust the Path) Get-ChildItem -Path "E:\dreamcast" -Recurse -Filter *.cue | ForEach-Object {$m3uPath = $_.FullName.Replace(".cue", ".m3u"); if (!(Test-Path $m3uPath)) {New-Item -ItemType File -Path $m3uPath -Force | Out-Null}; Add-Content -Path $m3uPath -Value $_.Name}
  2. Problem ("No video found for"...) You have to comment the three lines and than it will work: false line 131, 132, 133 if original_path.lower().endswith('mp4'): copy(r'%s' % original_path, r'%s' % output_dir) return fixed: def save_image(original_path, output_dir): if not os.path.isdir(output_dir): os.makedirs(output_dir) #if original_path.lower().endswith('.mp4'): #copy(r'%s' % original_path, r'%s' % output_dir) #return if reduce_image_size: try: after that the "gamelist.xml" will include Videos: <video>./video/Meteorites-01.mp4</video> instead of: <video/>
×
×
  • Create New...