bpa wrote: 
> I don't have experience but I thought metaflac is the "official" tool to
> use to add metadata into flac file.

Thangs again! This seems to work. I will probably tag all written data
with *easytag* now, and then add a picture with *metaflac*.

I wrote a small script to backup and alter all files in a directory.
Only thing is that `--preserve-modtime` would give an error. But it's
not so important.


Code:
--------------------
    #!/bin/bash
  if [ ! -d "BACKUP" ]; then
  echo "mkdir BACKUP"
  mkdir BACKUP
  fi
  for f in *.flac;
  do
  if [ -f "$f" ]; then
  if [ ! -f "BACKUP/$f" ]; then
  echo "cp $f to BACKUP"
  cp "$f" BACKUP/"$f"
  fi
  #metaflac --preserve-modtime 
--import-picture-from=/home/ben/Schreibtisch/1.jpg "$f"
  echo "metaflac --import-picture-from=/home/ben/Schreibtisch/1.jpg $f"
  metaflac --import-picture-from=/home/ben/Schreibtisch/1.jpg "$f"
  fi
  done
  
--------------------


------------------------------------------------------------------------
bvrulez's Profile: http://forums.slimdevices.com/member.php?userid=67251
View this thread: http://forums.slimdevices.com/showthread.php?t=114833

_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/ripping

Reply via email to