Visual Phonic ya se encumbró el pasado 2016 como la cita referencia para fanáticos del cine mudo musicado en vinilo. Y para este nuevo año, vuelve a la Filmoteca de Catalunya con un ciclo femenino comisariado por la reconocida cineasta Isabel Coixet. Que ha seleccionado varias películas sobre las que tres mujeres colocarán vinilos en directo como banda sonora.
Entre las que se encuentran Dj Shak el 17 de febrero con los filmes ‘À propos de Nice‘ (Jean Vigo, 1930) y ‘La glace à trois faces‘ (Jean Epstein, 1927). Dj Virgine el 17 de marzo con ‘La chute de la maison Usher’ (Jean Epstein, 1928) y Georgina Fernández el 21 de abril con ‘Tabú’ (F.W. Murnau, 1931).
Más información a través de su propio website.
foreach ($images as $image) {
if ($start <= $i and $i < $stop) {
$img_title = $image->post_title; // title.
$img_description = $image->post_content; // description.
$img_caption = $image->post_excerpt; // caption.
$img_url = wp_get_attachment_url($image->ID); // url of the full size image.
$preview_array = image_downsize( $image->ID, 'thumbnail' );
$img_preview = $preview_array[0]; // thumbnail or medium image to use for preview.
?>
}
$i++;
}
?>
}
}
// LAST NIGHT GALLERY=============================
// Get attached images & spits out a list of them.
function last_night_gallery($size = 'post-parrilla', $limit = '0', $offset = '0') {
global $post;
$images = get_children( array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID') );
if ($images) {
$num_of_images = count($images);
if ($offset > 0) : $start = $offset--; else : $start = 0; endif;
if ($limit > 0) : $stop = $limit+$start; else : $stop = $num_of_images; endif;
$i = 0;
?>