Esempio n. 1
0
def rm_get_main_url(date_s):
    if not npr_utils.is_saturday(date_s):
        raise ValueError("Error, this date given by '%s' is not a Saturday." %
                         npr_utils.get_datestring(date_s) )
    
    mon_lower = date_s.strftime('%b').lower()
    year = date_s.year
    dsub = date_s.strftime('%y%m%d')
    full_rm_url = 'http://www.npr.org/programs/waitwait/archrndwn/%04d/%s/%s.waitwait.html' % (
        year, mon_lower, dsub )
    return full_rm_url
Esempio n. 2
0
def rm_get_main_url(date_s):
    if not npr_utils.is_saturday(date_s):
        raise ValueError("Error, this date given by '%s' is not a Saturday." %
                         npr_utils.get_datestring(date_s))

    mon_lower = date_s.strftime('%b').lower()
    year = date_s.year
    dsub = date_s.strftime('%y%m%d')
    full_rm_url = 'http://www.npr.org/programs/waitwait/archrndwn/%04d/%s/%s.waitwait.html' % (
        year, mon_lower, dsub)
    return full_rm_url
Esempio n. 3
0
def _process_freshairs_by_year_tuple(input_tuple):
    outputdir, totnum, verbose, datetimes_order_tuples = input_tuple
    fa_image = get_freshair_image()
    for date_s, order in datetimes_order_tuples:
        time0 = time.time()
        try:
            fname = get_freshair(outputdir, date_s, order_totnum = ( order, totnum),
                                 file_data = fa_image )
            if verbose:
                print 'processed %s in %0.3f seconds.' % ( os.path.basename(fname), time.time() - time0 )
        except Exception:
            print 'Could not create Fresh Air episode for date %s for some reason' % npr_utils.get_datestring( date_s )
Esempio n. 4
0
def _process_waitwaits_by_year_tuple(input_tuple):
    outputdir, totnum, verbose, datetimes_order_tuples = input_tuple
    ww_image = get_waitwait_image()
    for date_s, order in datetimes_order_tuples:
        time0 = time.time()
        try:
            fname = get_waitwait(outputdir, date_s, order_totnum=(order, totnum), file_data=ww_image)
            if verbose:
                print("Processed %s in %0.3f seconds." % (fname, time.time() - time0))
        except Exception as e:
            print(
                "Could not create Wait Wait episode for date %s for some reason." % (npr_utils.get_datestring(date_s))
            )
Esempio n. 5
0
def rm_download_file( date_s, outdir = os.getcwd() ):
    decdate = npr_utils.get_decdate( date_s )
    outfile = os.path.join( outdir, 'NPR.WaitWait.%s.rm' % decdate )
    try:
        dsub = date_s.strftime('%Y%m%d')
        rm_url = 'http://download.npr.org/real.npr.na-central/waitwait/%s_waitwait.rm' % dsub
        req = urllib2.urlopen( rm_url )
        with open( outfile, 'w' ) as openfile:
            openfile.write( req.read() )
        return outfile
    except Exception as e:
        if os.path.isfile( outfile ):
            os.remove( outfile )
        raise ValueError("Error, could not download Wait Wait RM file for '%s' into %s." % (
            npr_utils.get_datestring(date_s), outdir ) )        
Esempio n. 6
0
def rm_download_file(date_s, outdir=os.getcwd()):
    decdate = npr_utils.get_decdate(date_s)
    outfile = os.path.join(outdir, 'NPR.WaitWait.%s.rm' % decdate)
    try:
        dsub = date_s.strftime('%Y%m%d')
        rm_url = 'http://download.npr.org/real.npr.na-central/waitwait/%s_waitwait.rm' % dsub
        req = urllib2.urlopen(rm_url)
        with open(outfile, 'w') as openfile:
            openfile.write(req.read())
        return outfile
    except Exception as e:
        if os.path.isfile(outfile):
            os.remove(outfile)
        raise ValueError(
            "Error, could not download Wait Wait RM file for '%s' into %s." %
            (npr_utils.get_datestring(date_s), outdir))
Esempio n. 7
0
def _process_freshairs_by_year_tuple(input_tuple):
    outputdir, totnum, verbose, datetimes_order_tuples = input_tuple
    fa_image = get_freshair_image()
    for date_s, order in datetimes_order_tuples:
        time0 = time.time()
        try:
            fname = get_freshair(outputdir,
                                 date_s,
                                 order_totnum=(order, totnum),
                                 file_data=fa_image)
            if verbose:
                print('processed %s in %0.3f seconds.' %
                      (os.path.basename(fname), time.time() - time0))
        except Exception:
            print(
                'Could not create Fresh Air episode for date %s for some reason'
                % npr_utils.get_datestring(date_s))
Esempio n. 8
0
def _process_waitwaits_by_year_tuple(input_tuple):
    outputdir, totnum, verbose, datetimes_order_tuples = input_tuple
    ww_image = get_waitwait_image()
    for date_s, order in datetimes_order_tuples:
        time0 = time.time()
        try:
            fname = get_waitwait(outputdir,
                                 date_s,
                                 order_totnum=(order, totnum),
                                 file_data=ww_image)
            if verbose:
                print('Processed %s in %0.3f seconds.' %
                      (fname, time.time() - time0))
        except Exception as e:
            print(
                'Could not create Wait Wait episode for date %s for some reason.'
                % (npr_utils.get_datestring(date_s)))
Esempio n. 9
0
def get_freshair(outputdir,
                 date_s,
                 order_totnum=None,
                 file_data=None,
                 debug=False,
                 do_mp4=False,
                 exec_dict=None,
                 check_if_exist=False,
                 mp3_exist=False,
                 to_file_debug=True):

    # check if outputdir is a directory
    if not os.path.isdir(outputdir):
        raise ValueError("Error, %s is not a directory." % outputdir)

    # check if actually a weekday
    assert (npr_utils.is_weekday(date_s))

    if exec_dict is None:
        exec_dict = npr_utils.find_necessary_executables()
    assert (exec_dict is not None)
    avconv_exec = exec_dict['avconv']

    if order_totnum is None:
        order_totnum = npr_utils.get_order_number_weekday_in_year(date_s)
    order_in_year, tot_in_year = order_totnum

    if file_data is None:
        file_data = get_freshair_image()

    decdate = date_s.strftime('%d.%m.%Y')
    m4afile = os.path.join(outputdir, 'NPR.FreshAir.%s.m4a' % decdate)
    if check_if_exist and os.path.isfile(m4afile):
        return

    nprURL = npr_utils.get_NPR_URL(date_s, _npr_FreshAir_progid,
                                   npr_utils.get_api_key())
    year = date_s.year

    # download this data into an lxml elementtree
    tree = lxml.etree.fromstring(requests.get(nprURL).content)

    if debug:
        # print 'URL = %s' % nprURL
        if to_file_debug:
            with open(
                    os.path.join(outputdir,
                                 'NPR.FreshAir.tree.%s.xml' % decdate),
                    'w') as openfile:
                openfile.write(lxml.etree.tostring(tree))
        return tree

    # check for unavailable tag
    if len(
            list(
                filter(
                    lambda elem: 'value' in elem.keys() and elem.get('value')
                    == 'true', tree.iter('unavailable')))) != 0:
        unavailable_elem = max(
            filter(
                lambda elem: 'value' in elem.keys() and elem.get('value') ==
                'true', tree.iter('unavailable')))
        if unavailable_elem.text is None:
            print(
                'Could not create Fresh Air episode for date %s for some reason'
                % npr_utils.get_datestring(date_s))
        else:
            print(
                'Could not create Fresh Air episode for date %s for this reason: %s'
                % (npr_utils.get_datestring(date_s),
                   unavailable_elem.text.strip()))
        return

    # now get tuple of title to mp3 file
    if not do_mp4:
        try:
            title_mp3_urls = _process_freshair_titlemp3_tuples_one(tree)
        except ValueError:
            title_mp3_urls = _process_freshair_titlemp3_tuples_two(tree)

        if len(title_mp3_urls) == 0:
            print('Error, could not find any Fresh Air episodes for date %s.' %
                  npr_utils.get_datestring(date_s))
            return

        titles, songurls = zip(*title_mp3_urls)
        outfiles = [
            os.path.join(outputdir, 'freshair.%s.%d.mp3' % (decdate, num + 1))
            for (num, mp3url) in enumerate(songurls)
        ]
        if mp3_exist:
            assert (all([os.path.isfile(outfile) for outfile in outfiles]))

    else:
        title_mp4_urls = _process_freshair_titlemp4_tuples(tree)
        if len(title_mp4_urls) == 0:
            print('Error, could not find any Fresh Air episodes for date %s.' %
                  npr_utils.get_datestring(date_s))
            return
        titles, songurls = zip(*title_mp4_urls)
        outfiles = [
            os.path.join(outputdir, 'freshair.%s.%d.mp4' % (decdate, num + 1))
            for (num, mp4url) in enumerate(songurls)
        ]

    title = date_s.strftime('%A, %B %d, %Y')
    title = '%s: %s.' % (title, '; '.join(
        ['%d) %s' % (num + 1, titl) for (num, titl) in enumerate(titles)]))

    # download those files
    time0 = time.time()
    pool = multiprocessing.Pool(processes=len(songurls))
    if not mp3_exist:
        outfiles = list(
            filter(None, pool.map(_download_file, zip(songurls, outfiles))))
    if do_mp4:  # replace mp4 with ac3
        newouts = []
        for outfile in outfiles:
            newfile = re.sub('\.mp4$', '.ac3', outfile)
            split_cmd = [avconv_exec, '-y', '-i', outfile, newfile]
            proc = subprocess.Popen(split_cmd,
                                    stdout=subprocess.PIPE,
                                    stderr=subprocess.PIPE)
            stdout_val, stderr_val = proc.communicate()
            os.remove(outfile)
            newouts.append(newfile)
        outfiles = newouts

        # sox magic command
        #wgdate = date_s.strftime('%d-%b-%Y')
        #wavfile = os.path.join(outputdir, 'freshair%s.wav' % wgdate ).replace(' ', '\ ')
        #split_cmd = [ '(for', 'file', 'in', ] + fnames + [
        #    ';', sox_exec, '$file', '-t', 'cdr', '-', ';', 'done)' ] + [
        #        '|', sox_exec, 't-', 'cdr', '-', wavfile ]
        #split_cmd = [ sox_exec, ] + fnames + [ wavfile, ]
        #print split_cmd
        #return
        #proc = subprocess.Popen(split_cmd, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
        #stdout_val, stderr_val = proc.communicate()
        #for filename in outfiles:
        #    os.remove(filename)

    # now convert to m4a file
    # /usr/bin/avconv -y -i freshair$wgdate.wav -ar 44100 -ac 2 -aq 400 -acodec libfaac NPR.FreshAir."$decdate".m4a ;
    time0 = time.time()
    fnames = [filename.replace(' ', '\ ') for filename in outfiles]
    avconv_concat_cmd = 'concat:%s' % '|'.join(fnames)
    split_cmd = [
        avconv_exec, '-y', '-i', avconv_concat_cmd, '-ar', '44100', '-ac', '2',
        '-threads',
        '%d' % multiprocessing.cpu_count(), '-strict', 'experimental',
        '-acodec', 'aac', m4afile
    ]
    proc = subprocess.Popen(split_cmd,
                            stdout=subprocess.PIPE,
                            stderr=subprocess.PIPE)
    stdout_val, stderr_val = proc.communicate()

    # remove wav file
    for filename in outfiles:
        os.remove(filename)

    # now put in metadata
    mp4tags = mutagen.mp4.MP4(m4afile)
    mp4tags.tags['\xa9nam'] = [
        title,
    ]
    mp4tags.tags['\xa9alb'] = [
        'Fresh Air From WHYY: %d' % year,
    ]
    mp4tags.tags['\xa9ART'] = [
        'Terry Gross',
    ]
    mp4tags.tags['\xa9day'] = [
        '%d' % year,
    ]
    mp4tags.tags['\xa9cmt'] = [
        "more info at : Fresh Air from WHYY and NPR Web site",
    ]
    mp4tags.tags['trkn'] = [
        (order_in_year, tot_in_year),
    ]
    mp4tags.tags['covr'] = [
        mutagen.mp4.MP4Cover(file_data, mutagen.mp4.MP4Cover.FORMAT_PNG),
    ]
    mp4tags.tags['\xa9gen'] = [
        'Podcast',
    ]
    mp4tags.tags['aART'] = [
        'Terry Gross',
    ]
    mp4tags.save()
    return m4afile
Esempio n. 10
0
if __name__ == '__main__':
    parser = OptionParser()
    parser.add_option(
        '--dirname',
        dest='dirname',
        type=str,
        action='store',
        default='/mnt/media/freshair',
        help='Name of the directory to store the file. Default is %s.' %
        '/mnt/media/freshair')
    parser.add_option(
        '--date',
        dest='date',
        type=str,
        action='store',
        default=npr_utils.get_datestring(datetime.datetime.now()),
        help=
        'The date, in the form of "January 1, 2014." The default is today\'s date, %s.'
        % npr_utils.get_datestring(datetime.datetime.now()))
    parser.add_option(
        '--mp4',
        dest='do_mp4',
        action='store_true',
        default=False,
        help=
        'If chosen, construct an NPR Fresh Air episode from MP4, rather than MP3, source files.'
    )
    parser.add_option(
        '--mp3exist',
        dest='mp3_exist',
        action='store_true',
Esempio n. 11
0
def get_freshair(outputdir, date_s, order_totnum = None,
                 file_data = None, debug = False, do_mp4 = False,
                 exec_dict = None, check_if_exist = False,
                 mp3_exist = False, to_file_debug = True ):
    
    # check if outputdir is a directory
    if not os.path.isdir(outputdir):
        raise ValueError("Error, %s is not a directory." % outputdir)

    # check if actually a weekday
    assert( npr_utils.is_weekday(date_s) )
    
    if exec_dict is None:
        exec_dict = npr_utils.find_necessary_executables()
    assert( exec_dict is not None )
    avconv_exec = exec_dict['avconv']
    
    if order_totnum is None:
        order_totnum = npr_utils.get_order_number_weekday_in_year(date_s)
    order_in_year, tot_in_year = order_totnum

    if file_data is None:
        file_data = get_freshair_image()

    decdate = date_s.strftime('%d.%m.%Y')
    m4afile = os.path.join(outputdir, 'NPR.FreshAir.%s.m4a' % decdate )
    if check_if_exist and os.path.isfile(m4afile):
        return
    
    nprURL = npr_utils.get_NPR_URL(date_s, _npr_FreshAir_progid, 
                                   npr_utils.get_api_key() )
    year = date_s.year
    
    # download this data into an lxml elementtree
    tree = lxml.etree.fromstring( requests.get(nprURL).content )
    
    if debug:
        # print 'URL = %s' % nprURL
        if to_file_debug:
            with open(os.path.join(outputdir, 'NPR.FreshAir.tree.%s.xml' % decdate), 'w') as openfile:
                openfile.write( lxml.etree.tostring( tree ) )
        return tree
    
    # check for unavailable tag
    if len(filter(lambda elem: 'value' in elem.keys() and 
                  elem.get('value') == 'true', tree.iter('unavailable'))) != 0:
        unavailable_elem = max(filter(lambda elem: 'value' in elem.keys() and
                                      elem.get('value') == 'true',
                                      tree.iter('unavailable')))
        if unavailable_elem.text is None:
            print 'Could not create Fresh Air episode for date %s for some reason' % npr_utils.get_datestring( date_s )
        else:
            print 'Could not create Fresh Air episode for date %s for this reason: %s' % \
                ( npr_utils.get_datestring( date_s ), unavailable_elem.text.strip() )
        return

    # now get tuple of title to mp3 file
    if not do_mp4:
        try:
            title_mp3_urls = _process_freshair_titlemp3_tuples_one(tree)
        except ValueError:
            title_mp3_urls = _process_freshair_titlemp3_tuples_two(tree)
            
        if len(title_mp3_urls) == 0:
            print 'Error, could not find any Fresh Air episodes for date %s.' % \
                npr_utils.get_datestring( date_s )
            return

        titles, songurls = zip(*title_mp3_urls)
        outfiles = [ os.path.join(outputdir, 'freshair.%s.%d.mp3' % 
                                  ( decdate, num + 1) ) for
                     (num, mp3url) in enumerate( songurls ) ]
        if mp3_exist:
            assert(all([ os.path.isfile( outfile ) for outfile in outfiles ]) )
            
    else:
        title_mp4_urls = _process_freshair_titlemp4_tuples( tree )
        if len(title_mp4_urls) == 0:
            print 'Error, could not find any Fresh Air episodes for date %s.' % \
                npr_utils.get_datestring( date_s )
            return
        titles, songurls = zip(*title_mp4_urls)
        outfiles = [ os.path.join(outputdir, 'freshair.%s.%d.mp4' % 
                                  ( decdate, num + 1) ) for
                     (num, mp4url) in enumerate( songurls ) ]
        
    title = date_s.strftime('%A, %B %d, %Y')
    title = '%s: %s.' % ( title,
                          '; '.join([ '%d) %s' % ( num + 1, titl ) for
                                      (num, titl) in enumerate(titles) ]) )    
    
    # download those files
    time0 = time.time()
    pool = multiprocessing.Pool(processes = len(songurls) )
    if not mp3_exist:
        outfiles = filter(None, pool.map(_download_file, zip( songurls, outfiles ) ) )
    if do_mp4: # replace mp4 with ac3
        newouts = []
        for outfile in outfiles:
            newfile = re.sub('\.mp4$', '.ac3', outfile )
            split_cmd = [ avconv_exec, '-y', '-i', outfile, newfile ]
            proc = subprocess.Popen( split_cmd, stdout = subprocess.PIPE, stderr = subprocess.PIPE )
            stdout_val, stderr_val = proc.communicate( )
            os.remove( outfile )
            newouts.append( newfile )
        outfiles = newouts
    
        # sox magic command
        #wgdate = date_s.strftime('%d-%b-%Y')
        #wavfile = os.path.join(outputdir, 'freshair%s.wav' % wgdate ).replace(' ', '\ ')
        #split_cmd = [ '(for', 'file', 'in', ] + fnames + [ 
        #    ';', sox_exec, '$file', '-t', 'cdr', '-', ';', 'done)' ] + [ 
        #        '|', sox_exec, 't-', 'cdr', '-', wavfile ]
        #split_cmd = [ sox_exec, ] + fnames + [ wavfile, ]
        #print split_cmd
        #return
        #proc = subprocess.Popen(split_cmd, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
        #stdout_val, stderr_val = proc.communicate()
        #for filename in outfiles:
        #    os.remove(filename)
        
    # now convert to m4a file
    # /usr/bin/avconv -y -i freshair$wgdate.wav -ar 44100 -ac 2 -aq 400 -acodec libfaac NPR.FreshAir."$decdate".m4a ;
    time0 = time.time()
    fnames = [ filename.replace(' ', '\ ') for filename in outfiles ]
    avconv_concat_cmd = 'concat:%s' % '|'.join(fnames)
    split_cmd = [ avconv_exec, '-y', '-i', avconv_concat_cmd, '-ar', '44100', '-ac', '2', '-threads', '%d' % multiprocessing.cpu_count(),
                  '-strict', 'experimental', '-acodec', 'aac', m4afile ]
    proc = subprocess.Popen(split_cmd, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
    stdout_val, stderr_val = proc.communicate()
    
    # remove wav file
    for filename in outfiles:
        os.remove(filename)
    
    # now put in metadata
    mp4tags = mutagen.mp4.MP4(m4afile)
    mp4tags.tags['\xa9nam'] = [ title, ]
    mp4tags.tags['\xa9alb'] = [ 'Fresh Air From WHYY: %d' % year, ]
    mp4tags.tags['\xa9ART'] = [ 'Terry Gross', ]
    mp4tags.tags['\xa9day'] = [ '%d' % year, ]
    mp4tags.tags['\xa9cmt'] = [ "more info at : Fresh Air from WHYY and NPR Web site", ]
    mp4tags.tags['trkn'] = [ ( order_in_year, tot_in_year ), ]
    mp4tags.tags['covr'] = [ mutagen.mp4.MP4Cover(file_data, mutagen.mp4.MP4Cover.FORMAT_PNG ), ]
    mp4tags.tags['\xa9gen'] = [ 'Podcast', ]
    mp4tags.tags['aART'] = [ 'Terry Gross', ]
    mp4tags.save()
    return m4afile
Esempio n. 12
0
    mp4tags.tags['\xa9cmt'] = [ "more info at : Fresh Air from WHYY and NPR Web site", ]
    mp4tags.tags['trkn'] = [ ( order_in_year, tot_in_year ), ]
    mp4tags.tags['covr'] = [ mutagen.mp4.MP4Cover(file_data, mutagen.mp4.MP4Cover.FORMAT_PNG ), ]
    mp4tags.tags['\xa9gen'] = [ 'Podcast', ]
    mp4tags.tags['aART'] = [ 'Terry Gross', ]
    mp4tags.save()
    return m4afile

if __name__=='__main__':
    parser = OptionParser()
    parser.add_option('--dirname', dest='dirname', type=str,
                      action = 'store', default = '/mnt/media/freshair',
                      help = 'Name of the directory to store the file. Default is %s.' %
                      '/mnt/media/freshair')
    parser.add_option('--date', dest='date', type=str,
                      action = 'store', default = npr_utils.get_datestring( datetime.datetime.now()),
                      help = 'The date, in the form of "January 1, 2014." The default is today\'s date, %s.' %
                      npr_utils.get_datestring( datetime.datetime.now() ) )
    parser.add_option('--mp4', dest='do_mp4', action='store_true', default = False,
                      help = 'If chosen, construct an NPR Fresh Air episode from MP4, rather than MP3, source files.' )
    parser.add_option('--mp3exist', dest='mp3_exist', action='store_true', default = False,
                      help = 'If chosen, then do not download the transitional mp3 files. Use the ones that'+
                      ' already exist.')
    parser.add_option('--debug', dest='debug', action='store_true',
                      help = 'If chosen, run freshair.py in debug mode. Useful for debugging :)',
                      default = False)
    opts, args = parser.parse_args()
    dirname = os.path.expanduser( opts.dirname )
    fname = get_freshair( dirname, npr_utils.get_time_from_datestring( opts.date ),
                          debug = opts.debug, do_mp4 = opts.do_mp4,
                          mp3_exist = opts.mp3_exist )
Esempio n. 13
0
def get_waitwait(outputdir, date_s, order_totnum=None, file_data=None, debugonly=False, exec_dict=None):

    # check if outputdir is a directory
    if not os.path.isdir(outputdir):
        raise ValueError("Error, %s is not a directory." % outputdir)

    # check if actually saturday
    if not npr_utils.is_saturday(date_s):
        raise ValueError("Error, date = %s not a Saturday." % npr_utils.get_datestring(date_s))

    if exec_dict is None:
        exec_dict = npr_utils.find_necessary_executables()
    assert exec_dict is not None
    avconv_exec = exec_dict["avconv"]

    if order_totnum is None:
        order_totnum = npr_utils.get_order_number_saturday_in_year(date_s)
    order_in_year, tot_in_year = order_totnum

    if file_data is None:
        file_data = get_waitwait_image()

    year = date_s.year
    decdate = npr_utils.get_decdate(date_s)
    m4afile = os.path.join(outputdir, "NPR.WaitWait.%s.m4a" % decdate)

    if year >= 2006:
        tup = get_title_wavfile_standard(date_s, outputdir, avconv_exec, debugonly=debugonly)
        if tup is None:
            return
        title, outfiles = tup
        fnames = [filename.replace(" ", "\ ") for filename in outfiles]
        sox_string_cmd = "concat:%s" % "|".join(fnames)
        split_cmd = [
            avconv_exec,
            "-y",
            "-i",
            sox_string_cmd,
            "-ar",
            "44100",
            "-ac",
            "2",
            "-threads",
            "%d" % multiprocessing.cpu_count(),
            "-strict",
            "experimental",
            "-acodec",
            "aac",
            m4afile,
        ]
        proc = subprocess.Popen(split_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
        stdout_val, stderr_val = proc.communicate()
        for filename in outfiles:
            os.remove(filename)
    else:
        title = waitwait_realmedia.rm_get_title_from_url(date_s)
        rmfile = waitwait_realmedia.rm_download_file(date_s, outdir=outputdir)
        wavfile = waitwait_realmedia.rm_create_wav_file(date_s, rmfile, outdir=outputdir)
        os.remove(rmfile)

        # now convert to m4a file
        m4afile = os.path.join(outputdir, "NPR.WaitWait.%s.m4a" % decdate)
        split_cmd = [
            avconv_exec,
            "-y",
            "-i",
            wavfile,
            "-ar",
            "44100",
            "-ac",
            "2",
            "-threads",
            "%d" % multiprocessing.cpu_count(),
            "-strict",
            "experimental",
            "-acodec",
            "aac",
            m4afile,
        ]
        proc = subprocess.Popen(split_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
        stdout_val, stderr_val = proc.communicate()

        # remove wav file
        os.remove(wavfile)

    # now put in metadata
    mp4tags = mutagen.mp4.MP4(m4afile)
    mp4tags.tags["\xa9nam"] = [title]
    mp4tags.tags["\xa9alb"] = ["Wait Wait...Don't Tell Me: %d" % year]
    mp4tags.tags["\xa9ART"] = ["Peter Sagal"]
    mp4tags.tags["\xa9day"] = ["%d" % year]
    mp4tags.tags["\xa9cmt"] = ["more info at : NPR Web site"]
    mp4tags.tags["trkn"] = [(order_in_year, tot_in_year)]
    mp4tags.tags["covr"] = [mutagen.mp4.MP4Cover(file_data, mutagen.mp4.MP4Cover.FORMAT_PNG)]
    mp4tags.tags["\xa9gen"] = ["Podcast"]
    mp4tags.save()
    return m4afile
Esempio n. 14
0

if __name__ == "__main__":
    parser = OptionParser()
    parser.add_option(
        "--dirname",
        dest="dirname",
        type=str,
        action="store",
        default="/mnt/media/waitwait",
        help="Name of the directory to store the file. Default is %s." % "/mnt/media/waitwait",
    )
    parser.add_option(
        "--date",
        dest="date",
        type=str,
        action="store",
        default=npr_utils.get_datestring(_get_last_saturday(datetime.datetime.now())),
        help='The date, in the form of "January 1, 2014." The default is last Saturday, %s.'
        % npr_utils.get_datestring(_get_last_saturday(datetime.datetime.now())),
    )
    parser.add_option(
        "--debugonly",
        dest="debugonly",
        action="store_true",
        default=False,
        help="If chosen, download the NPR XML data sheet for this Wait Wait episode.",
    )
    opts, args = parser.parse_args()
    fname = get_waitwait(opts.dirname, npr_utils.get_time_from_datestring(opts.date), debugonly=opts.debugonly)
Esempio n. 15
0
def get_waitwait(outputdir,
                 date_s,
                 order_totnum=None,
                 file_data=None,
                 debugonly=False,
                 exec_dict=None,
                 verify=True,
                 justFix=False):

    # check if outputdir is a directory
    if not os.path.isdir(outputdir):
        raise ValueError("Error, %s is not a directory." % outputdir)

    # check if actually saturday
    if not npr_utils.is_saturday(date_s):
        raise ValueError("Error, date = %s not a Saturday." %
                         npr_utils.get_datestring(date_s))

    if exec_dict is None:
        exec_dict = npr_utils.find_necessary_executables()
    assert (exec_dict is not None)
    avconv_exec = exec_dict['avconv']

    if order_totnum is None:
        order_totnum = npr_utils.get_order_number_saturday_in_year(date_s)
    order_in_year, tot_in_year = order_totnum

    if file_data is None:
        file_data = get_waitwait_image(verify=verify)

    year = date_s.year
    decdate = npr_utils.get_decdate(date_s)
    m4afile = os.path.join(outputdir, 'NPR.WaitWait.%s.m4a' % decdate)

    if year >= 2006:
        tup = get_title_wavfile_standard(date_s,
                                         outputdir,
                                         avconv_exec,
                                         debugonly=debugonly,
                                         verify=verify,
                                         justFix=justFix)
        if tup is None:
            return
        title, outfiles = tup
        if justFix:  # works only for year >= 2006
            if not os.path.isfile(m4afile):
                print "Error, %s does not exist." % os.path.basename(m4afile)
                return
            mp4tags = mutagen.mp4.MP4(m4afile)
            mp4tags.tags['\xa9nam'] = [
                title,
            ]
            mp4tags.save()
            logging.debug('fixed title for %s.' % m4afile)
            return m4afile
        fnames = map(lambda filename: filename.replace(' ', '\ '), outfiles)
        sox_string_cmd = 'concat:%s' % '|'.join(fnames)
        split_cmd = [
            avconv_exec, '-y', '-i', sox_string_cmd, '-ar', '44100', '-ac',
            '2', '-threads',
            '%d' % multiprocessing.cpu_count(), '-strict', 'experimental',
            '-acodec', 'aac', m4afile
        ]
        proc = subprocess.Popen(split_cmd,
                                stdout=subprocess.PIPE,
                                stderr=subprocess.PIPE)
        stdout_val, stderr_val = proc.communicate()
        if 'Protocol not found' in stderr_val.strip():
            for filename in outfiles:
                os.remove(filename)
            raise ValueError(
                "Error, AVCONV does not have the concatenation protocol.")
        for filename in outfiles:
            os.remove(filename)
    else:
        title = waitwait_realmedia.rm_get_title_from_url(date_s)
        rmfile = waitwait_realmedia.rm_download_file(date_s, outdir=outputdir)
        wavfile = waitwait_realmedia.rm_create_wav_file(date_s,
                                                        rmfile,
                                                        outdir=outputdir)
        os.remove(rmfile)

        # now convert to m4a file
        m4afile = os.path.join(outputdir, 'NPR.WaitWait.%s.m4a' % decdate)
        split_cmd = [
            avconv_exec, '-y', '-i', wavfile, '-ar', '44100', '-ac', '2',
            '-threads',
            '%d' % multiprocessing.cpu_count(), '-strict', 'experimental',
            '-acodec', 'aac', m4afile
        ]
        proc = subprocess.Popen(split_cmd,
                                stdout=subprocess.PIPE,
                                stderr=subprocess.PIPE)
        stdout_val, stderr_val = proc.communicate()

        # remove wav file
        os.remove(wavfile)

    # now put in metadata
    mp4tags = mutagen.mp4.MP4(m4afile)
    mp4tags.tags['\xa9nam'] = [
        title,
    ]
    mp4tags.tags['\xa9alb'] = [
        "Wait Wait...Don't Tell Me: %d" % year,
    ]
    mp4tags.tags['\xa9ART'] = [
        'Peter Sagal',
    ]
    mp4tags.tags['\xa9day'] = [
        '%d' % year,
    ]
    mp4tags.tags['\xa9cmt'] = [
        "more info at : NPR Web site",
    ]
    mp4tags.tags['trkn'] = [
        (order_in_year, tot_in_year),
    ]
    mp4tags.tags['covr'] = [
        mutagen.mp4.MP4Cover(file_data, mutagen.mp4.MP4Cover.FORMAT_PNG),
    ]
    mp4tags.tags['\xa9gen'] = [
        'Podcast',
    ]
    mp4tags.save()
    return m4afile
Esempio n. 16
0
if __name__ == '__main__':
    parser = OptionParser()
    parser.add_option(
        '--dirname',
        dest='dirname',
        type=str,
        action='store',
        default='/mnt/media/waitwait',
        help='Name of the directory to store the file. Default is %s.' %
        '/mnt/media/waitwait')
    parser.add_option(
        '--date',
        dest='date',
        type=str,
        action='store',
        default=npr_utils.get_datestring(
            _get_last_saturday(datetime.datetime.now())),
        help=
        'The date, in the form of "January 1, 2014." The default is last Saturday, %s.'
        %
        npr_utils.get_datestring(_get_last_saturday(datetime.datetime.now())))
    parser.add_option(
        '--debugonly',
        dest='debugonly',
        action='store_true',
        default=False,
        help=
        'If chosen, download the NPR XML data sheet for this Wait Wait episode.'
    )
    parser.add_option('--noverify',
                      dest='do_noverify',
                      action='store_true',