Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How to find untagged audio files? Post 302482595 by radoulov on Wednesday 22nd of December 2010 04:04:35 AM
Old 12-22-2010
Test this one:

Code:
find . -type f -name '*.[Mm][Pp]3' -exec id3 -Rl {} + -o \
  -name '*.[Ff][Ll][Aa][Cc]' -exec metaflac --show-md5sum  \
    --with-filename --export-tags-to=- {} + |
  awk 'BEGIN {
    mp3n        = split("album artist title track",       mp3_tags)
    flacn       = split("album artist title tracknumber", flac_tags)
    ignorepatt  = "^ *(unknown|track *[0-9]*)* *$"    
    }
  $1 ~ /\.[Ff][Ll][Aa][Cc]$/ {
    if (fn) {
      for (i = 1; i <= flacn; i++) {
        if (tolower(tags[flac_tags[i]]) ~ ignorepatt) {
          invalid_tags[flac_tags[i]] = tags[flac_tags[i]]
          f || f++
          }
        }
      if (f) {
       print RS, fn, "has missing/invalid tags:"
        for (t in invalid_tags)
          printf "%s -> %s\n", t, invalid_tags[t]
        }      
      }    
    split(x, tags); split(x, invalid_tags)
    fn = $1; f = x
    }
  /^Filename/ {
    if (fn) {
      for (i = 1; i <= mp3n; i++) {
        if (tolower(tags[mp3_tags[i]]) ~ ignorepatt) {
          invalid_tags[mp3_tags[i]] = tags[mp3_tags[i]]
          f || f++
          }
        }
      if (f) {
       print RS, fn, "has missing/invalid tags:"
        for (t in invalid_tags)
          printf "%s -> %s\n", t, invalid_tags[t]
        }      
      }    
    split(x, tags); split(x, invalid_tags)
    fn = $2; f = x
    }
 { 
    if (split($0, tmp, "=") == 2) {
      $1 = tmp[1]; $2 = tmp[2]
      }
    tags[tolower($1)] = $2
    }
  END {
      if (fn ~ /\.[Ff][Ll][Aa][Cc]$/) {
        for (i = 1; i <= flacn; i++) {
          if (tolower(tags[flac_tags[i]]) ~ ignorepatt) {
            invalid_tags[flac_tags[i]] = tags[flac_tags[i]]
            f || f++
            }
          }
        if (f) {
          print RS, fn, "has missing/invalid tags:"
          for (t in invalid_tags)
            printf "%s -> %s\n", t, invalid_tags[t]
            }      
          }    
    else       
      for (i = 1; i <= mp3n; i++) {
        if (tolower(tags[mp3_tags[i]]) ~ ignorepatt) {
          invalid_tags[mp3_tags[i]] = tags[mp3_tags[i]]
          f || f++
          }
      if (f) {
        print RS, fn, "has missing/invalid tags:"
          for (t in invalid_tags)
          printf "%s -> %s\n", t, invalid_tags[t]
          }            
        }  
      }' FS=:

 

7 More Discussions You Might Find Interesting

1. Programming

Playing Audio files in C

Hi All, Looking for an assistance on how to access the speakers of my machine and play audio files using C. Any tutorials will be of great help. Regards, Sayantan. (1 Reply)
Discussion started by: Sayantan
1 Replies

2. UNIX for Dummies Questions & Answers

Find Audio Files With Specific Bandwidth?

Hi, I would like to write a shell script that will: -search the files of a specific user to find any audio files with a bandwidth iqual or greater than 192 kps - on the results i should see the file name along with all the whole file route and each file's size So I guess i should be using... (1 Reply)
Discussion started by: ubu-user
1 Replies

3. Shell Programming and Scripting

Script to list files not present in audio.txt file

I am having following folder structure. /root/audios/pop /root/audios/jazz /root/audios/rock Inside those pop, jazz, rock folders there are following files, p1.ul, p2.ul, p3.ul, j1.ul, j2.ul, j3.ul, r1.ul, r2.ul, r3.ul And I have a file named as "audio.txt" in the path /root/audios,... (11 Replies)
Discussion started by: gopikrish81
11 Replies

4. Shell Programming and Scripting

Manipulating audio files server side

Hi All, I have next to zero knowledge on what I am about to ask so I will just ask it in plain English :) I am wondering how best to go about manipulating audio files server side. The manipulations required are join files one after the other, eg, audio1 + audio2 + audio3 + audio4 = audio5 ... (0 Replies)
Discussion started by: linuxgoat
0 Replies

5. Slackware

Problems with audio recording in Audacity 2.0.5. Slackware64 14.1; Intel HD Audio.

I'm trying to record audio using Audacity 2.0.5 installed from SlackBuilds. My system is 64-bit Slackware 14.1 and a sound card is Intel HD Audio. I didn't change my sound system to OSS. (Default sound system in Slackware 14.1 is ALSA, isn't it?) First, I set Internal Microphone slider in KMix... (2 Replies)
Discussion started by: qzxcvbnm
2 Replies

6. UNIX for Dummies Questions & Answers

Remove untagged and junk data from an XML

Hi All , I have seen a lot of code samples which suggest how to remove the junk data from and XML , I need a code in unix which removes the junk characters as well as the valid characters those are not in XML tags , for example my XML is as follows : <?xml version="1.0"... (6 Replies)
Discussion started by: IshuGupta
6 Replies

7. Shell Programming and Scripting

Need a script for automation the convert a lot number audio files to another format

I have a lot number audio files in the MP3 proprietary format, I want to convert them to 'opus' the free and higher quality format, with keep metadata also. My selection command-line programs are SoX (Sound eXchange) for convert MP3 files to 'AIFF' format in order to keep quality and metadata*... (1 Reply)
Discussion started by: temp-usr
1 Replies
CTAGS(1)						      General Commands Manual							  CTAGS(1)

NAME
ctags - Generates "tags" and (optionally) "refs" files SYNOPSIS
ctags [-stvra] filesnames... DESCRIPTION
ctags generates the "tags" and "refs" files from a group of C source files. The "tags" file is used by Elvis' ":tag" command, control-] command, and -t option. The "refs" file is sometimes used by the ref(1) program. Each C source file is scanned for #define statements and global function definitions. The name of the macro or function becomes the name of a tag. For each tag, a line is added to the "tags" file which contains: - the name of the tag - a tab character - the name of the file containing the tag - a tab character - a way to find the particular line within the file. The filenames list will typically be the names of all C source files in the current directory, like this: $ ctags -stv *.[ch] OPTIONS
-t Include typedefs. A tag will be generated for each user-defined type. Also tags will be generated for struct and enum names. Types are considered to be global if they are defined in a header file, and static if they are defined in a C source file. -v Include variable declarations. A tag will be generated for each variable, except for those that are declared inside the body of a function. -s Include static tags. Ctags will normally put global tags in the "tags" file, and silently ignore the static tags. This flag causes both global and static tags to be added. The name of a static tag is generated by prefixing the name of the declared item with the name of the file where it is defined, with a colon in between. For example, "static foo(){}" in "bar.c" results in a tag named "bar.c:foo". -r This causes ctags to generate both "tags" and "refs". Without -r, it would only generate "tags". -a Append to "tags", and maybe "refs". Normally, ctags overwrites these files each time it is invoked. This flag is useful when you have to many files in the current directory for you to list them on a single command-line; it allows you to split the arguments among several invocations. FILES
tags A cross-reference that lists each tag name, the name of the source file that contains it, and a way to locate a particular line in the source file. refs The "refs" file contains the definitions for each tag in the "tags" file, and very little else. This file can be useful, for exam- ple, when licensing restrictions prevent you from making the source code to the standard C library readable by everybody, but you still everybody to know what arguments the library functions need. BUGS
ctags is sensitive to indenting and line breaks. Consequently, it might not discover all of the tags in a file that is formatted in an unusual way. SEE ALSO
elvis(1), refs(1) AUTHOR
Steve Kirkendall kirkenda@cs.pdx.edu CTAGS(1)
All times are GMT -4. The time now is 06:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy