Your IP : 216.73.216.134


Current Path : /opt/rh/rh-python35/root/lib64/python3.5/__pycache__/
Upload File :
Current File : //opt/rh/rh-python35/root/lib64/python3.5/__pycache__/tokenize.cpython-35.pyc



���\�l�X@s:dZdZdZddlmZddlmZmZddl	Z	ddl
mZddlm
Z
ddlZddlZdd	lTejd
ej�Zejdej�ZddlZejdd
dddddgZ[eZdee<edZdee<edZdee<ed7Zdededededede de!de"de#de$d e%d!e&d"e'd#e(d$e)d%e*d&e+d'e,d(e-d)e.d*e/d+e0d,e1d-e2d.e3d/e4d0e5d1e6d2e7d3e8d4e9d5e:d6e;d7e<d8e=d9e>d:e?d;e@d<eAd=eBd>eCd?eDd@eEdAeFi,ZGGdBd�de	jHddC��ZIdDdE�ZJdFdG�ZKdHdI�ZLdJZMdKZNeMeKdLeM�eLeN�ZOdMZPdNZQdOZRdPZSdQZTeJeQeReSeT�ZUdRZVeJdSdT�eLeV�ZWdUeVZXeJeWeX�ZYeJdVeYdW�ZZeJeZeYeU�Z[dXZ\dYZ]dZZ^d[Z_d\Z`eJe\d]e\d^�ZaeJe\d_e\d`�ZbeJdadbdcd+dddedfd.�ZcdgZdeJdhdidj�ZeeJecedee�ZfeJe[efebeP�ZgeOegZheJe\dkeJdldL�e\dmeJdndL��ZieJdoeNea�ZjeMeJeje[efeieP�Zkdpdq�Zldle]dne^d]e_d^e`dre_dse`dte_due`dve_dwe`dxe_dye`dze_d{e`d|e_d}e`d~e_de`d�e_d�e`d�e_d�e`d�e_d�e`d�e_d�e`d�e_d�e`d�e_d�e`d�e_d�e`d�dd�dd�dd�dd�dd�di&ZmiZnxd�D]Zoeoeneo<qIWiZpxd�D]Zoeoepeo<qjWd�ZqGd�d��d�er�ZsGd�d��d�er�ZtGd�d��d��Zud�d�Zvd�d��Zwd�d�Zxd�d��Zd�d
�Zyd�d��Zzd�d��Z{d�d��Z|e}d�kr6e|�dS)�aoTokenization help for Python programs.

tokenize(readline) is a generator that breaks a stream of bytes into
Python tokens.  It decodes the bytes according to PEP-0263 for
determining source file encoding.

It accepts a readline-like method which is called repeatedly to get the
next line of input (or b"" for EOF).  It generates 5-tuples with these
members:

    the token type (see token.py)
    the token (a string)
    the starting (row, column) indices of the token (a 2-tuple of ints)
    the ending (row, column) indices of the token (a 2-tuple of ints)
    the original line (string)

It is designed to match the working of the Python tokenizer exactly, except
that it produces COMMENT tokens for comments and gives type OP for all
operators.  Additionally, all token lists start with an ENCODING token
which tells you which encoding was used to decode the bytes stream.
zKa-Ping Yee <ping@lfw.org>zpGvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro, Raymond Hettinger, Trent Nelson, Michael Foord�)�open)�lookup�BOM_UTF8N)�
TextIOWrapper)�chain)�*z%^[ \t\f]*#.*coding[:=][ \t]*([-\w.]+)s^[ \t\f]*(?:[#\r\n]|$)�COMMENT�tokenize�detect_encoding�NL�
untokenize�ENCODING�	TokenInfo����(�)�[�]�:�,�;�+�-r�/�|�&�<�>�=�.�%�{�}z==z!=z<=z>=�~�^z<<z>>z**z+=z-=z*=z/=z%=z&=z|=z^=z<<=z>>=z**=z//z//=�@z@=c@s.eZdZdd�Zedd��ZdS)rcCs.d|jt|jf}d|jd|�S)Nz%d (%s)z8TokenInfo(type=%s, string=%r, start=%r, end=%r, line=%r)�type)r(�tok_name�_replace)�self�annotated_type�r-�8/opt/rh/rh-python35/root/usr/lib64/python3.5/tokenize.py�__repr__cszTokenInfo.__repr__cCs4|jtkr)|jtkr)t|jS|jSdS)N)r(�OP�string�EXACT_TOKEN_TYPES)r+r-r-r.�
exact_typehszTokenInfo.exact_typeN)�__name__�
__module__�__qualname__r/�propertyr3r-r-r-r.rbsztype string start end linecGsddj|�dS)Nrrr)�join)�choicesr-r-r.�grouposr:cGst|�dS)Nr)r:)r9r-r-r.�anypsr;cGst|�dS)N�?)r:)r9r-r-r.�maybeqsr=z[ \f\t]*z	#[^\r\n]*z\\\r?\nz\w+z0[xX][0-9a-fA-F]+z
0[bB][01]+z0[oO][0-7]+z(?:0+|[1-9][0-9]*)z[eE][-+]?[0-9]+z[0-9]+\.[0-9]*z\.[0-9]+z[0-9]+z
[0-9]+[jJ]z[jJ]z(?:[bB][rR]?|[rR][bB]?|[uU])?z[^'\\]*(?:\\.[^'\\]*)*'z[^"\\]*(?:\\.[^"\\]*)*"z%[^'\\]*(?:(?:\\.|'(?!''))[^'\\]*)*'''z%[^"\\]*(?:(?:\\.|"(?!""))[^"\\]*)*"""�'''�"""z'[^\n'\\]*(?:\\.[^\n'\\]*)*'z"[^\n"\\]*(?:\\.[^\n"\\]*)*"z\*\*=?z>>=?z<<=?z//=?z->z[+\-*/%&@|^=<>]=?z[][(){}]z\r?\nz\.\.\.z[:;.,@]z'[^\n'\\]*(?:\\.[^\n'\\]*)*�'z"[^\n"\\]*(?:\\.[^\n"\\]*)*�"z
\\\r?\n|\ZcCstj|tj�S)N)�re�compile�UNICODE)�exprr-r-r.�_compile�srF�r'''�r"""�b'''�b"""�R'''�R"""�B'''�B"""�br'''�br"""�bR'''�bR"""�Br'''�Br"""�BR'''�BR"""�rb'''�rb"""�Rb'''�Rb"""�rB'''�rB"""�RB'''�RB"""�u'''�u"""�U'''�U"""�r�R�b�B�u�U�r'�r"�R'�R"�b'�b"�B'�B"�br'�br"�Br'�Br"�bR'�bR"�BR'�BR"�rb'�rb"�rB'�rB"�Rb'�Rb"�RB'�RB"�u'�u"�U'�U"�c@seZdZdS)�
TokenErrorN)r4r5r6r-r-r-r.r��sr�c@seZdZdS)�StopTokenizingN)r4r5r6r-r-r-r.r��sr�c@s@eZdZdd�Zdd�Zdd�Zdd�Zd	S)
�UntokenizercCs(g|_d|_d|_d|_dS)Nrr)�tokens�prev_row�prev_col�encoding)r+r-r-r.�__init__�s			zUntokenizer.__init__cCs�|\}}||jks9||jkr]||jkr]tdj|||j|j���||j}|r�|jjd|�d|_||j}|r�|jjd|�dS)Nz+start ({},{}) precedes previous end ({},{})z\
r� )r�r��
ValueError�formatr��append)r+�start�row�col�
row_offset�
col_offsetr-r-r.�add_whitespace�s-	
	
zUntokenizer.add_whitespacecCs�t|�}g}d}x}|D]u}t|�dkrH|j||�P|\}}}}	}
|tkru||_q|tkr�P|tkr�|j|�qn�|tkr�|j	�|	\|_
|_qnl|tt
fkr�d}nQ|r;|r;|d}|dt|�kr5|jj|�t|�|_d}|j|�|jj|�|	\|_
|_|tt
fkr|j
d7_
d|_qWdj|j�S)NFrTrr����)�iter�len�compatr
r��	ENDMARKER�INDENTr��DEDENT�popr�r��NEWLINErr�r�r8)r+�iterable�it�indents�	startline�t�tok_type�tokenr��end�line�indentr-r-r.r�sF
	

	


zUntokenizer.untokenizec
CsJg}|jj}|dttfk}d}xt|g|�D]}|dd�\}}	|tkru|	|_qA|ttt	t
fkr�|	d7}	|tkr�|r�d|	}	d}nd}|tkr�|j|	�qAnW|t
kr�|j�qAn;|ttfkrd}n |r8|r8||d�d}||	�qAWdS)NrFrr�Trr�)r�r�r�rrr
r��NAME�NUMBER�ASYNC�AWAIT�STRINGr�r�r�)
r+r�r�r��toks_appendr��
prevstring�tok�toknum�tokvalr-r-r.r�s8	

	

	zUntokenizer.compatN)r4r5r6r�r�rr�r-r-r-r.r��s
%r�cCs=t�}|j|�}|jdk	r9|j|j�}|S)aTransform tokens back into Python source code.
    It returns a bytes object, encoded using the ENCODING
    token, which is the first token sequence output by tokenize.

    Each element returned by the iterable must be a token sequence
    with at least two elements, a token number and token value.  If
    only two tokens are passed, the resulting output is poor.

    Round-trip invariant for full input:
        Untokenized source will match input source exactly

    Round-trip invariant for limited intput:
        # Output bytes will tokenize the back to the input
        t1 = [tok[:2] for tok in tokenize(f.readline)]
        newcode = untokenize(t1)
        readline = BytesIO(newcode).readline
        t2 = [tok[:2] for tok in tokenize(readline)]
        assert t1 == t2
    N)r�rr��encode)r��ut�outr-r-r.r?s
	cCsd|dd�j�jdd�}|dks=|jd�rAdS|d
ks\|jd�r`dS|S)z(Imitates get_normal_name in tokenizer.c.N��_rzutf-8zutf-8-�latin-1�
iso-8859-1�iso-latin-1�latin-1-�iso-8859-1-�iso-latin-1-)r�r�r�)r�r�r�)�lower�replace�
startswith)�orig_enc�encr-r-r.�_get_normal_nameZs"r�cs1y�jj�Wntk
r*d�YnXd�d}d}�fdd�}��fdd�}|�}|jt�r�d�|d	d�}d
}|s�|gfS||�}|r�||gfStj|�s�||gfS|�}|s�||gfS||�}|r!|||gfS|||gfS)a
    The detect_encoding() function is used to detect the encoding that should
    be used to decode a Python source file.  It requires one argument, readline,
    in the same way as the tokenize() generator.

    It will call readline a maximum of twice, and return the encoding used
    (as a string) and a list of any lines (left as bytes) it has read in.

    It detects the encoding from the presence of a utf-8 bom or an encoding
    cookie as specified in pep-0263.  If both a bom and a cookie are present,
    but disagree, a SyntaxError will be raised.  If the encoding cookie is an
    invalid charset, raise a SyntaxError.  Note that if a utf-8 bom is found,
    'utf-8-sig' is returned.

    If no encoding is specified, then the default of 'utf-8' will be returned.
    NFzutf-8cs(y��SWntk
r#dSYnXdS)N�)�
StopIterationr-)�readliner-r.�read_or_stop}s
z%detect_encoding.<locals>.read_or_stopcs2y|jd�}WnBtk
rWd}�dk	rGdj|��}t|��YnXtj|�}|sqdSt|jd��}yt|�}WnIt	k
r��dkr�d|}ndj�|�}t|��YnX�r.|dkr$�dkr	d}ndj��}t|��|d	7}|S)
Nzutf-8z'invalid or missing encoding declarationz{} for {!r}rzunknown encoding: zunknown encoding for {!r}: {}zencoding problem: utf-8z encoding problem for {!r}: utf-8z-sig)
�decode�UnicodeDecodeErrorr��SyntaxError�	cookie_re�matchr�r:r�LookupError)r��line_string�msgr�r��codec)�	bom_found�filenamer-r.�find_cookie�s6


			
z$detect_encoding.<locals>.find_cookieTrz	utf-8-sig)�__self__�name�AttributeErrorr�r�blank_rer�)r�r��defaultr�r��first�secondr-)r�r�r�r.r
es8
&	


	
cCsst|d�}yHt|j�\}}|jd�t||dd�}d|_|SWn|j��YnXdS)zXOpen a file in read only mode using the encoding detected by
    detect_encoding().
    �rbr�line_bufferingTrcN)�
_builtin_openr
r��seekr�mode�close)r��bufferr��lines�textr-r-r.r�s
	
rcCs_ddlm}m}t|�\}}t|d�}|d�}t||||�j|�S)a�
    The tokenize() generator requires one argment, readline, which
    must be a callable object which provides the same interface as the
    readline() method of built-in file objects.  Each call to the function
    should return one line of input as bytes.  Alternately, readline
    can be a callable function terminating with StopIteration:
        readline = open(myfile, 'rb').__next__  # Example of alternate readline

    The generator produces 5-tuples with these members: the token type; the
    token string; a 2-tuple (srow, scol) of ints specifying the row and
    column where the token begins in the source; a 2-tuple (erow, ecol) of
    ints specifying the row and column where the token ends in the source;
    and the line on which the token was found.  The line passed is the
    logical line; continuation lines are included.

    The first token sequence will always be an ENCODING token
    which tells you which encoding was used to decode the bytes stream.
    r)r�repeatr�)�	itertoolsrr�r
r��	_tokenize�__next__)r�rr�r��consumed�rl_gen�emptyr-r-r.r	�s
c cs�	d}}}d}d!\}}d}dg}	d}
d}d}d}
|dk	r||dkred}tt|d"d#d�Vx�y
|�}Wntk
r�d}YnX|dk	r�|j|�}|d7}dt|�}}|r�|s�td	|��|j|�}|rf|jd�}}tt||d|�|||f||�Vd$\}}d}q�|r�|d%d�dkr�|d&d�d
kr�tt	||||t|�f|�Vd}d}qq�||}||}qn�|dkr�|r�|sPd}xv||kr�||dkr7|d7}n?||dkr\|t
dt
}n||dkrud}nP|d7}qW||kr�P||dkr�||dkr=||d�jd�}|t|�}tt|||f||t|�f|�Vtt
||d�||f|t|�f|�Vqtt
tf||dk||d�||f|t|�f|�Vq||	d'kr�|	j|�tt|d|�|df||f|�Vx�||	d(kri||	krtdd|||f��|	dd)�}	|rC||	d*krCd}d}
d}ttd||f||f|�Vq�W|r�|
r�||	d+kr�d}d}
d}n!|s�td|df��d}x�||krC	tt�j||�}|r	|jd�\}}||f||f|}}}||kr-q�|||�||}}||ksx|dkr�|dkr�|dkr�tt||||�Vq@	|dkr�|
r�|
Vd}
|dkr�tt
||||�Vq	tt||||�V|r	d}
q@	|dkrH|jd�st�|
r.|
Vd}
tt||||�Vq@	|tkr�tt|�}|j||�}|r�|jd�}|||�}tt||||f|�Vq	||f}||d�}|}Pq@	|tks|dd
�tks|dd�tkr�|d,dkr�||f}tt|p[t|dp[t|d
�}||d�d}}|}Pq	tt||||�Vq@	|j�r�|d-kr�|r�t|dkr�tnt||||�Vq�tt||||�}|dkr|
r|}
q�|dkr�|
r�|
j tkr�|
j!dkr�d}|	d.}tt|
j!|
j"|
j|
j#�Vd}
|
r�|
Vd}
|Vq@	|dkr�d}q@	|dkr�|d7}n|d kr�|d8}|
r�|
Vd}
tt$||||�Vq�tt	||||f||df|�V|d7}q�WqW|
rY	|
Vd}
x;|	dd�D])}ttd|df|dfd�Vqj	Wtt%d|df|dfd�VdS)/Nr�
0123456789r�Fz	utf-8-sigzutf-8r�rzEOF in multi-line stringrz\
rz\
r��	�z#
�#z
z3unindent does not match any outer indentation levelz
<tokenize>zEOF in multi-line statementr!z...T�
�async�await�def�\z([{z)]})r�r)rr)rr)r�r������r�r�r�r�r�r�)zasynczawaitr�)&rr
r�r�r�r�r�r�r��
ERRORTOKEN�tabsize�rstriprrr�r��IndentationErrorr�rF�PseudoToken�spanr�r��endswith�AssertionError�
triple_quoted�endpats�
single_quoted�isidentifierr�r�r�r(r1r�r�r0r�) r�r��lnum�parenlev�	continued�numchars�contstr�needcont�contliner��stashed�	async_def�async_def_indent�async_def_nlr��pos�max�strstart�endprog�endmatchr��column�
comment_token�nl_pos�pseudomatchr��spos�eposr��initialr�r�r-r-r.r��sj	


	2



		$#' 
-'	 $	 

	


'r�cCs
t|d�S)N)r�)r�r-r-r.�generate_tokens�src
s�ddl}dd��dd�fdd�}|jdd�}|jdd	d
ddd
dd�|jdddddddd�|j�}y�|jr�|j}t|d��}tt|j��}WdQRXnd}t	t
jjd�}x[|D]S}|j}|j
r|j}d|j|j}	td|	t||jf�q�WWnbtk
r�}
z?|
jddd�\}}||
jd|||f�WYdd}
~
Xntk
r}
z5|
jd\}}||
jd|||f�WYdd}
~
Xn�tk
r8}
z||
|�WYdd}
~
Xntk
rf}
z||
�WYdd}
~
XnQtk
r�td�Yn6tk
r�}
z�d|
��WYdd}
~
XnXdS)NrcSst|dtj�dS)N�file)�print�sys�stderr)�messager-r-r.�perror�szmain.<locals>.perrorcsg|r+|f||f}�d|�n+|rH�d||f�n�d|�tjd�dS)Nz%s:%d:%d: error: %sz
%s: error: %sz	error: %sr)r�exit)r!r��location�args)r"r-r.�error�szmain.<locals>.error�progzpython -m tokenize�destr��nargsr<�metavarzfilename.py�helpz'the file to tokenize; defaults to stdinz-ez--exact�exact�action�
store_truez(display token names using the exact typer�z<stdin>z%d,%d-%d,%d:z%-20s%-15s%-15rrrzinterrupted
zunexpected error: %s)�argparse�ArgumentParser�add_argument�
parse_argsr�r��listr	r�r�r�stdinr(r,r3r�r�rr)r1r�r%r�r��OSError�KeyboardInterrupt�	Exception)
r/r&�parserr%r��fr�r��
token_type�token_range�errr�rr-)r"r.�main�sN		
			 //
r=�__main__)r>r?rGrHrKrLrIrJrMrNrOrPrSrTrQrRrUrVrWrXr[r\rYrZr]r^r_r`rarb)r@rArirjrkrlrmrnrorprqrrrsrtrurvrwrxryrzr{r|r}r~rr�r�r�r�r�)~�__doc__�
__author__�__credits__�builtinsrr��codecsrr�collections�iorr�rrBrr�rC�ASCIIr�r��__all__�N_TOKENSrr)rr
�LPAR�RPAR�LSQB�RSQB�COLON�COMMA�SEMI�PLUS�MINUS�STAR�SLASH�VBAR�AMPER�LESS�GREATER�EQUAL�DOT�PERCENT�LBRACE�RBRACE�EQEQUAL�NOTEQUAL�	LESSEQUAL�GREATEREQUAL�TILDE�
CIRCUMFLEX�	LEFTSHIFT�
RIGHTSHIFT�
DOUBLESTAR�	PLUSEQUAL�MINEQUAL�	STAREQUAL�
SLASHEQUAL�PERCENTEQUAL�
AMPEREQUAL�	VBAREQUAL�CIRCUMFLEXEQUAL�LEFTSHIFTEQUAL�RIGHTSHIFTEQUAL�DOUBLESTAREQUAL�DOUBLESLASH�DOUBLESLASHEQUAL�AT�ATEQUALr2�
namedtuplerr:r;r=�
Whitespace�Comment�Ignore�Name�	Hexnumber�	Binnumber�	Octnumber�	Decnumber�	Intnumber�Exponent�
Pointfloat�Expfloat�Floatnumber�
Imagnumber�Number�StringPrefix�Single�Double�Single3�Double3�Triple�String�Operator�Bracket�Special�Funny�
PlainToken�Token�ContStr�PseudoExtrasr�rFrrr�rr�r7r�r�r�rr�r
r	r�rr=r4r-r-r-r.�<module>sD






"



	




_]�<

Rosenblum TV: Video training, virtual workshops, classes, tutorials
logologologologo
  • About
  • What We Do
  • Our Clients
  • Case Studies
    • The BBC
    • CBS News
    • New York Times Television
    • Spectrum News
    • The Newark Star-Ledger
    • The United Nations
    • McGraw/Hill
    • Oyster Yachts
    • Scottish Environmental Protection Agency
  • The Power of Storytelling
  • Why iPhones?
  • Michael on Media
  • Books
  • Contact
  • About
  • What We Do
  • Our Clients
  • Case Studies
    • The BBC
    • CBS News
    • New York Times Television
    • Spectrum News
    • The Newark Star-Ledger
    • The United Nations
    • McGraw/Hill
    • Oyster Yachts
    • Scottish Environmental Protection Agency
  • The Power of Storytelling
  • Why iPhones?
  • Michael on Media
  • Books
  • Contact

RE-INVENTING THE TELEVISION NEWS BUSINESS*

A revolution in video storytelling

Creating entirely new & cost-effective production methods

From the world leaders in video production training and the creators of Character Driven Storytelling™

*and every other business that uses video

WHAT WE DO

Over the past 35 years, we have designed, built or restructured some of the most powerful news and journalism companies in the world.

We replace the traditional TV news ‘crew’ with one highly trained journalist, working alone with nothing but an iPhone.

No more TV news ‘crews’, no editors and no field producers.

This is television news done the way newspaper journalism is done – one reporter with their electronic pad and pencil.

In doing this, we can cut the cost of production by as much as 75% while increasing ratings and audience engagement.

In the place of conventional TV news ‘packages’ – ie, reporter stand up, interview, b-roll, man on the street, we marry great journalism with Netflix and Hollywood storytelling.

It’s a combination that works.

We have taken most of our clients to #1 in their respective markets.

And it’s not just for news. Any company, any profit, any NGO and anyone else who is online needs to tell their story in compelling yet cost-effective video. We can teach you to do that. Either in person or virtually.

EXAMPLES OF WHAT WE CAN TEACH YOUR STAFF TO PRODUCE

ITAY HOD

Itay Hod, MMJ with KPIX/CBS in San Francisco, took the 5-Day Intensive Video Storytelling Bootcamp in 2018.

Because he works alone, with only an iPhone, he was able to embed himself with a homeless family.

Here’s the story he produced in a one-day turn.

KIET DO

Kiet Do, an MMJ with KPIX/CBS in San Francisco, took the 5-Day Intensive Video Storytelling Bootcamp in 2021.

Here is a story he produced, all on his own, with only an iPhone and in a one-day turn.

TAYLOR SCHAUB

Taylor Schaub, an MMJ with Spectrum News 1 in LA, took the 5-Day Intensive Video Storytelling Bootcamp in 2023.

Here is a story he turned in only one day, using only an iPhone. It was the first video story he ever did and it was nominated for an Emmy.

THE BOOTCAMP

How do we convert stations and whole networks to working in this way?

Since 1988, we have run intensive 5-Day Video Storytelling Bootcamps

We have done these all over the world.

These are hands-on bootcamps, and participants learn an entirely new way of creating TV news stories.

-We shoot at a 3:1 ratio or lower, so turnaround times are fast.

-We go directly from camera to timelilne and edit – no written scripts.  We work in the medium of pictures and sound.

-We are entirely character-driven.

-We are driven by pictures and real events.

-We are focused almost entirely on ’the viewer experience’.

Since 1988, more than 70,000 journalists around the world have taken our bootcamps, either in person on virtualy.

Case Studies

CBS Case Study Logos
CBS News

We have started to work with CBS News, bringing our ideas of character-driven storytelling to one of the most successful and biggest networks in the United States. Since beginning to work with them ratings have climbed and more importantly, audience engagement is through the ceiling.

Learn More
NYT Case Study Logos
New York Times Television

We started New York Times Television in 1990 and it was the first paper to be brought into the world of TV. It quickly became one of the most successful non-fiction production companies in the United States. The series and documentaries we produced won many awards including multiple Emmys.

Learn More
BBC Case Study Logos
The BBC

We have been working with the BBC since the year 2000 helping to convert their national news network to our visual storytelling technique. Most recently we have trained teams from their sports, documentaries, and comedy divisions to make character-driven stories using only smartphones.

Learn More
Spectrum Case Study Logos
Spectrum News

For the past five years we have worked with Spectrum News to introduce and train their journalists on visual, character driven storytelling using smartphones helping to create a different kind of local news for their network of 24-Hour News Stations across the United States.

Learn More
UN Case Study Logos
The United Nations

In 2006, we were approached by the United Nations. Rather than rely on news outlets, it would be much easier to train the field operatives to produce their own stories. We spent two years working with the UN, training more than 100 of their staff in bootcamps in Geneva and Nairobi.

Learn More
Star Ledger Case Study Logos
The Newark Star-Ledger

We trained 50 print reporters at the paper to shoot and tell their own stories, in conjunction with their print work. We built a TV newsroom in their existing print newsroom – you could not ask for a better set and they began to live stream their stories in conjunction with their print work.

Learn More
Mcgraw Hill Case Study Logos
Mcgraw Hill

We spent two years with McGraw Hill, training more than 150 of their staffers, making them completely video literate. McGraw/Hill media properties we transit included Business Week, Aviation Week, (what was the name of the architecture magazine), and JD Power and Associates.

Learn More
VOA Case Study Logos
Voice of America

In 1990, we were approached by The Voice of America, the official broadcasting agency for the United States Government. When we met with VOA, they were only a short wave radio broadcaster, but working with them, we took them into television, launching VOA-TV.

Learn More
Oyster Case Study Logos
Oyster Yachts

British based Oyster Yachts makes some of the finest yachts in the world. Like every other company, they had to find a way to feed the never-ending video demands of social media – sites like Instagram and TikTok. We trained the Oyster staff to tell their own stories, using only iPhones.

Learn More
SEPA Case Study Logos
Scottish Environmental Protection Agency

We were approached by SEPA, the Scottish Environmental Protection Agency because they had to continually find a way to ‘feed the media beast’. The result was that SEPA was able to tell their own stories, whenever they wanted, and at almost no additional cost.

Learn More
Image 11-11-22 at 6.25 PM

Michael on Media

Michael Rosenblum has been writing about the media since 1988. His work and ideas have appeared in The Guardian, The Huffington Post, Ilkeston Life and many other publications.

He has been blogging regularly for the past 35 years on this subject. Having taught media studies at Columbia University, NYU and now the University of Oxford, he is considered an expert on this subject.

Continue reading this post or look back at previous posts.

Read More

Do You Have Questions About Learning Video Skills?

If you would like to know more about our courses contact us and one of our training advisors will be happy to call you.

Contact Us

Copyright 2024. All rights reserved.