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__/tempfile.cpython-35.pyc



���\�g�@sNdZddddddddd	d
ddd
g
ZddlZddlZddlZddlZ	ddl
ZddlZ
ddlmZddlZyddlZWnek
r�ddlZYnXejZe	je	jBe	jBZee	d�ree	jOZeZee	d�r&ee	jOZee	d�rAe	j Z ndZ dZ!e�Z"ee	d�rqe	j#Z$n'ee	d�r�e	j%Z$ndd�Z$dd�Z&dd�Z'dd�Z(Gdd �d �Z)d!d"�Z*d#d$�Z+da,d%d&�Z-d'd(�Z.d)d	�Z/d*d�Z0da1d+d�Z2d,d
�Z3dddd-d.d�Z4dddd/d�Z5d0e!dd1d�Z6Gd2d3�d3�Z7Gd4d5�d5�Z8d6d@dddddd8d9d�Z9e	j:d:ks�e	j;j<d;kr�e9Z=n0ee	d<�a>d6dAdddddd=d�Z=Gd>d�d�Z?Gd?d�de@�ZAdS)Ba�Temporary files.

This module provides generic, low- and high-level interfaces for
creating temporary files and directories.  All of the interfaces
provided by this module can be used without fear of race conditions
except for 'mktemp'.  'mktemp' is subject to race conditions and
should not be used; it is provided for backward compatibility only.

The default path names are returned as str.  If you supply bytes as
input, all return values will be in bytes.  Ex:

    >>> tempfile.mkstemp()
    (4, '/tmp/tmptpu9nin8')
    >>> tempfile.mkdtemp(suffix=b'')
    b'/tmp/tmppbi8f0hy'

This module also provides some data items to the user:

  TMP_MAX  - maximum number of names that will be tried before
             giving up.
  tempdir  - If this is set to a string before the first use of
             any routine from this module, it will be considered as
             another candidate location to store temporary files.
�NamedTemporaryFile�
TemporaryFile�SpooledTemporaryFile�TemporaryDirectory�mkstemp�mkdtemp�mktemp�TMP_MAX�
gettempprefix�tempdir�
gettempdir�gettempprefixb�gettempdirb�N)�Random�
O_NOFOLLOW�O_BINARYi'Ztmp�lstat�statcCs&tj|tj�}tj|�dS)N)�_os�open�O_RDONLY�close)�fn�fd�r�8/opt/rh/rh-python35/root/usr/lib64/python3.5/tempfile.py�_statTsrcCs/yt|�Wntk
r&dSYnXdSdS)NFT)r�OSError)rrrr�_existsXs

	rcGs�d}xk|D]c}|dkr"q
t|t�rR|tkrItd��t}q
|tkrjtd��t}q
W|dkr�tS|S)zBLook at the type of all args and divine their implied return type.Nz1Can't mix bytes and non-bytes in path components.)�
isinstance�bytes�str�	TypeError)�argsZreturn_type�argrrr�_infer_return_typeas
	
r%cCs�t|||�}|dkr'|�}|dkrW|tkrHt}ntjt�}|dkr�|tkr{t�}n	t�}||||fS)z9Common parameter processing for most APIs in this module.N)r%r!�templater�fsencoderr
)�prefix�suffix�dir�output_typerrr�_sanitize_paramsvs			r,c@sFeZdZdZdZedd��Zdd�Zdd�Zd	S)
�_RandomNameSequencea*An instance of _RandomNameSequence generates an endless
    sequence of unpredictable strings which can safely be incorporated
    into file names.  Each string is six characters long.  Multiple
    threads can safely use the same instance at the same time.

    _RandomNameSequence is an iterator.Z%abcdefghijklmnopqrstuvwxyz0123456789_cCs@tj�}|t|dd�kr9t�|_||_|jS)N�_rng_pid)r�getpid�getattr�_RandomZ_rngr.)�selfZcur_pidrrr�rng�s
	z_RandomNameSequence.rngcCs|S)Nr)r2rrr�__iter__�sz_RandomNameSequence.__iter__csD|j�|jj���fdd�td�D�}dj|�S)Ncsg|]}����qSrr)�.0Zdummy)�c�chooserr�
<listcomp>�s	z0_RandomNameSequence.__next__.<locals>.<listcomp>��)�
charactersr3Zchoice�range�join)r2Zlettersr)r6r7r�__next__�s	"z_RandomNameSequence.__next__N)	�__name__�
__module__�__qualname__�__doc__r;�propertyr3r4r>rrrrr-�s
r-cCs�g}x0dD](}tj|�}|r
|j|�q
Wtjdkrd|jddddg�n|jd	d
dg�y|jtj��Wn(ttfk
r�|jtj�YnX|S)
z[Generate a list of candidate temporary directories which
    _get_default_tempdir will try.�TMPDIR�TEMP�TMP�ntzc:\tempzc:\tmpz\tempz\tmpz/tmpz/var/tmpz/usr/tmp)rDrErF)	r�getenv�append�name�extend�getcwd�AttributeErrorr�curdir)�dirlistZenvname�dirnamerrr�_candidate_tempdir_list�s
rQcCs~t�}t�}xO|D]G}|tjkr@tjj|�}xtd�D]}t|�}tjj||�}yvtj	|t
d�}zHz3tj	|ddd��}|jd�WdQRXWdtj
|�XWdtj|�X|SWqMtk
r�YqMtk
rItjdkrDtjj|�rDtj|tj�rDwMPYqMtk
r[PYqMXqMWqWttjd	|��dS)
aqCalculate the default directory to use for temporary files.
    This routine should be called exactly once.

    We determine whether or not a candidate temp dir is usable by
    trying to create and write to a file in that directory.  If this
    is successful, the test file is deleted.  To prevent denial of
    service, the name of the test file must be randomized.�di��wb�closefdFsblatNrGz)No usable temporary directory found in %s)r-rQrrN�path�abspathr<�nextr=r�_bin_openflags�_io�writer�unlink�FileExistsError�PermissionErrorrJ�isdir�access�W_OKr�FileNotFoundError�_errno�ENOENT)ZnamerrOr*�seqrJ�filenamer�fprrr�_get_default_tempdir�s:			


!
	rgc
CsAtdkr=tj�ztdkr.t�aWdtj�XtS)z7Common setup sequence for all user-callable interfaces.N)�_name_sequence�
_once_lock�acquirer-�releaserrrr�_get_candidate_names�s

rlc
Cst�}|tkr'ttj|�}x�tt�D]�}t|�}tjj	||||�}ytj
||d�}	Wnetk
r�w4YnQtk
r�tj
dkr�tjj|�r�tj|tj�r�w4n�YnX|	tjj|�fSWttjd��dS)z>Code common to mkstemp, TemporaryFile, and NamedTemporaryFile.i�rGz#No usable temporary file name foundN)rlr �maprr'r<rrWrUr=rr\r]rJr^r_r`rVrb�EEXIST)
r*ZpreZsuf�flagsr+�namesrdrJ�filerrrr�_mkstemp_inner�s$	

!	rrcCstS)z-The default prefix for temporary directories.)r&rrrrr	scCstjt��S)z6The default prefix for temporary directories as bytes.)rr'r	rrrrrsc
CsAtdkr=tj�ztdkr.t�aWdtj�XtS)zAccessor for tempfile.tempdir.N)r
rirjrgrkrrrrr!s

cCstjt��S)z)A bytes version of tempfile.gettempdir().)rr'rrrrrr
-sFcCsIt|||�\}}}}|r-t}nt}t|||||�S)a�User-callable function to create and return a unique temporary
    file.  The return value is a pair (fd, name) where fd is the
    file descriptor returned by os.open, and name is the filename.

    If 'suffix' is not None, the file name will end with that suffix,
    otherwise there will be no suffix.

    If 'prefix' is not None, the file name will begin with that prefix,
    otherwise a default prefix is used.

    If 'dir' is not None, the file will be created in that directory,
    otherwise a default directory is used.

    If 'text' is specified and true, the file is opened in text
    mode.  Else (the default) the file is opened in binary mode.  On
    some operating systems, this makes no difference.

    If any of 'suffix', 'prefix' and 'dir' are not None, they must be the
    same type.  If they are bytes, the returned name will be bytes; str
    otherwise.

    The file is readable and writable only by the creating user ID.
    If the operating system uses permission bits to indicate whether a
    file is executable, the file is executable by no one. The file
    descriptor is not inherited by children of this process.

    Caller is responsible for deleting the file when done with it.
    )r,�_text_openflagsrXrr)r)r(r*�textr+rorrrr1s
	cCst|||�\}}}}t�}|tkrEttj|�}x�tt�D]�}t|�}tj	j
||||�}ytj|d�Wnetk
r�wRYnQt
k
r�tjdkr�tj	j|�r�tj|tj�r�wRn�YnX|SWttjd��dS)aUser-callable function to create and return a unique temporary
    directory.  The return value is the pathname of the directory.

    Arguments are as for mkstemp, except that the 'text' argument is
    not accepted.

    The directory is readable, writable, and searchable only by the
    creating user.

    Caller is responsible for deleting the directory when done with it.
    i�rGz(No usable temporary directory name foundN)r,rlr rmrr'r<rrWrUr=�mkdirr\r]rJr^r_r`rbrn)r)r(r*r+rprdrJrqrrrrYs&
	

!	r:cCs�|dkrt�}t�}xMtt�D]?}t|�}tjj||||�}t|�s+|Sq+Wt	t
jd��dS)a�User-callable function to return a unique temporary file name.  The
    file is not created.

    Arguments are similar to mkstemp, except that the 'text' argument is
    not accepted, and suffix=None, prefix=None and bytes file names are not
    supported.

    THIS FUNCTION IS UNSAFE AND SHOULD NOT BE USED.  The file name may
    refer to a file that did not exist at some point, but by the time
    you get around to creating it, someone else may have beaten you to
    the punch.
    Nz"No usable temporary filename found)rrlr<rrWrrUr=rr\rbrn)r)r(r*rprdrJrqrrrr�s			c@smeZdZdZdZdZddd�Zejdkr]ej	dd	�Z
d
d�Zndd	�Z
dS)
�_TemporaryFileCloserz�A separate object allowing proper closing of a temporary file's
    underlying file object, without adding a __del__ method to the
    temporary file.NFTcCs||_||_||_dS)N)rqrJ�delete)r2rqrJrwrrr�__init__�s		z_TemporaryFileCloser.__init__rGcCsQ|jrM|jdk	rMd|_z|jj�Wd|jrL||j�XdS)NT)�close_calledrqrrwrJ)r2r[rrrr�s		z_TemporaryFileCloser.closecCs|j�dS)N)r)r2rrr�__del__�sz_TemporaryFileCloser.__del__cCs#|jsd|_|jj�dS)NT)ryrqr)r2rrrr�s		)r?r@rArBrqryrxrrJr[rrzrrrrrv�s
rvc@saeZdZdZddd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dS)�_TemporaryFileWrapperz�Temporary file wrapper

    This class provides a wrapper around files opened for
    temporary use.  In particular, it seeks to automatically
    remove the file when it is no longer needed.
    TcCs4||_||_||_t|||�|_dS)N)rqrJrwrv�_closer)r2rqrJrwrrrrx�s			z_TemporaryFileWrapper.__init__cs�|jd}t||�}t|d�rd|�tj���fdd��}|j|_|}t|t�s�t|||�|S)Nrq�__call__cs
�||�S)Nr)r#�kwargs)�funcrr�func_wrapper�sz7_TemporaryFileWrapper.__getattr__.<locals>.func_wrapper)	�__dict__r0�hasattr�
_functools�wrapsr|r�int�setattr)r2rJrq�ar�r)rr�__getattr__�s
!z!_TemporaryFileWrapper.__getattr__cCs|jj�|S)N)rq�	__enter__)r2rrrr��s
z_TemporaryFileWrapper.__enter__cCs&|jj|||�}|j�|S)N)rq�__exit__r)r2�exc�value�tb�resultrrrr��s
z_TemporaryFileWrapper.__exit__cCs|jj�dS)zA
        Close the temporary file, possibly deleting it.
        N)r|r)r2rrrr�sz_TemporaryFileWrapper.closeccsx|jD]}|Vq
WdS)N)rq)r2�linerrrr4sz_TemporaryFileWrapper.__iter__N)
r?r@rArBrxr�r�r�rr4rrrrr{�sr{zw+b�Tc
Cs�t|||�\}}}}t}	tjdkrF|rF|	tjO}	t||||	|�\}
}y8tj|
|d|d|d|�}t|||�SWn"t	k
r�tj
|
��YnXdS)a�Create and return a temporary file.
    Arguments:
    'prefix', 'suffix', 'dir' -- as for mkstemp.
    'mode' -- the mode argument to io.open (default "w+b").
    'buffering' -- the buffer size argument to io.open (default -1).
    'encoding' -- the encoding argument to io.open (default None)
    'newline' -- the newline argument to io.open (default None)
    'delete' -- whether the file is deleted on close (default True).
    The file is created as mkstemp() would do it.

    Returns an object with a file-like interface; the name of the file
    is accessible as file.name.  The file will be automatically deleted
    when it is closed unless the 'delete' argument is set to False.
    rG�	buffering�newline�encodingN)r,rXrrJZO_TEMPORARYrrrYrr{�	Exceptionr)
�moder�r�r�r)r(r*rwr+rorrJrqrrrr
s


�posix�cygwin�	O_TMPFILEcCs5t|||�\}}}}t}tr�y.|tjBtj@}	tj||	d�}
Wn)tk
rrdaYnStk
r�YnBXy&t	j|
|d|d|d|�SWntj
|
��YnXt|||||�\}
}y3tj|�t	j|
|d|d|d|�SWntj
|
��YnXdS)a>Create and return a temporary file.
        Arguments:
        'prefix', 'suffix', 'dir' -- as for mkstemp.
        'mode' -- the mode argument to io.open (default "w+b").
        'buffering' -- the buffer size argument to io.open (default -1).
        'encoding' -- the encoding argument to io.open (default None)
        'newline' -- the newline argument to io.open (default None)
        The file is created as mkstemp() would do it.

        Returns an object with a file-like interface.  The file has no
        name, and will cease to exist when it is closed.
        i�Fr�r�r�N)
r,rX�_O_TMPFILE_WORKSrr��O_CREATr�IsADirectoryErrorrrYrrrr[)r�r�r�r�r)r(r*r+roZflags2rrJrrrr:s0





c
@s{eZdZdZdZddd7ddddddd�Zd	d
�Zdd�Zd
d�Zdd�Z	dd�Z
dd�Zedd��Z
edd��Zdd�Zdd�Zdd�Zedd ��Zed!d"��Zed#d$��Zd%d&�Zd'd(�Zd)d*�Zd+d,�Zed-d.��Zd/d0�Zdd1d2�Zd3d4�Zd5d6�ZdS)8rz�Temporary file wrapper, specialized to switch from BytesIO
    or StringIO to a real file when it exceeds a certain size or
    when a fileno is needed.
    Frzw+br�Nc		Cs|d|krtj�|_ntjdd�|_||_d|_d|d|d|d|d	|d|d
|i|_dS)N�br��
Fr�r�r)r(r�r*)rY�BytesIO�_file�StringIO�	_max_size�_rolled�_TemporaryFileArgs)	r2�max_sizer�r�r�r�r)r(r*rrrrx{s		zSpooledTemporaryFile.__init__cCs<|jr
dS|j}|r8|j�|kr8|j�dS)N)r�r��tell�rollover)r2rqr�rrr�_check�s
		zSpooledTemporaryFile._checkcCsh|jr
dS|j}t|j�}|_|`|j|j��|j|j�d�d|_dS)NrT)r�r�rr�rZ�getvalue�seekr�)r2rqZnewfilerrrr��s		zSpooledTemporaryFile.rollovercCs|jjrtd��|S)Nz%Cannot enter context with closed file)r��closed�
ValueError)r2rrrr��szSpooledTemporaryFile.__enter__cCs|jj�dS)N)r�r)r2r�r�r�rrrr��szSpooledTemporaryFile.__exit__cCs
|jj�S)N)r�r4)r2rrrr4�szSpooledTemporaryFile.__iter__cCs|jj�dS)N)r�r)r2rrrr�szSpooledTemporaryFile.closecCs
|jjS)N)r�r�)r2rrrr��szSpooledTemporaryFile.closedcCsHy|jjSWn3tk
rCd|jdkr4�|jdSYnXdS)Nr�r�r�)r�r�rMr�)r2rrrr��s
zSpooledTemporaryFile.encodingcCs|j�|jj�S)N)r�r��fileno)r2rrrr��s
zSpooledTemporaryFile.filenocCs|jj�dS)N)r��flush)r2rrrr��szSpooledTemporaryFile.flushcCs
|jj�S)N)r��isatty)r2rrrr��szSpooledTemporaryFile.isattycCs2y|jjSWntk
r-|jdSYnXdS)Nr�)r�r�rMr�)r2rrrr��s
zSpooledTemporaryFile.modecCs+y|jjSWntk
r&dSYnXdS)N)r�rJrM)r2rrrrJ�s
zSpooledTemporaryFile.namecCsHy|jjSWn3tk
rCd|jdkr4�|jdSYnXdS)Nr�r�r�)r��newlinesrMr�)r2rrrr��s
zSpooledTemporaryFile.newlinescGs|jj|�S)N)r��read)r2r#rrrr��szSpooledTemporaryFile.readcGs|jj|�S)N)r��readline)r2r#rrrr��szSpooledTemporaryFile.readlinecGs|jj|�S)N)r��	readlines)r2r#rrrr��szSpooledTemporaryFile.readlinescGs|jj|�dS)N)r�r�)r2r#rrrr��szSpooledTemporaryFile.seekcCs
|jjS)N)r��	softspace)r2rrrr��szSpooledTemporaryFile.softspacecCs
|jj�S)N)r�r�)r2rrrr��szSpooledTemporaryFile.tellcCsI|dkr|jj�n)||jkr5|j�|jj|�dS)N)r��truncater�r�)r2�sizerrrr��s

zSpooledTemporaryFile.truncatecCs)|j}|j|�}|j|�|S)N)r�rZr�)r2�srq�rvrrrrZ�s	
zSpooledTemporaryFile.writecCs)|j}|j|�}|j|�|S)N)r��
writelinesr�)r2�iterablerqr�rrrr�s	
zSpooledTemporaryFile.writelines���)r?r@rArBr�rxr�r�r�r�r4rrCr�r�r�r�r�r�rJr�r�r�r�r�r�r�r�rZr�rrrrrts8			c@smeZdZdZddddd�Zedd��Zdd�Zd	d
�Zdd�Z	d
d�Z
dS)ra+Create and return a temporary directory.  This has the same
    behavior as mkdtemp but can be used as a context manager.  For
    example:

        with TemporaryDirectory() as tmpdir:
            ...

    Upon exiting the context, the directory and everything contained
    in it are removed.
    NcCsFt|||�|_tj||j|jddj|��|_dS)N�warn_messagezImplicitly cleaning up {!r})rrJ�_weakref�finalize�_cleanup�format�
_finalizer)r2r)r(r*rrrrxszTemporaryDirectory.__init__cCs!tj|�tj|t�dS)N)�_shutil�rmtree�	_warnings�warn�ResourceWarning)�clsrJr�rrrr�s
zTemporaryDirectory._cleanupcCsdj|jj|j�S)Nz	<{} {!r}>)r��	__class__r?rJ)r2rrr�__repr__ szTemporaryDirectory.__repr__cCs|jS)N)rJ)r2rrrr�#szTemporaryDirectory.__enter__cCs|j�dS)N)�cleanup)r2r�r�r�rrrr�&szTemporaryDirectory.__exit__cCs#|jj�rtj|j�dS)N)r��detachr�r�rJ)r2rrrr�)szTemporaryDirectory.cleanup)r?r@rArBrx�classmethodr�r�r�r�r�rrrrrs
r�r�)BrB�__all__�	functoolsr��warningsr��iorY�osrZshutilr��errnorbZrandomrr1�weakrefr��_thread�ImportErrorZ
_dummy_thread�
allocate_lockZ_allocate_lock�O_RDWRr��O_EXCLrsr�rrXrrr&rirrrrr%r,r-rQrgrhrlrrr	rr
rr
rrrrvr{rrJ�sys�platformrr�r�objectrrrrr�<module>s�
	

		-(' +?		#!			8�

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.