'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

TRF1

The Tr-F1 is a 155mm French towed howitzer produced by Nexter (ex Giat Industries) and used by the French army.

Performance

  • Setting out of battery: 2 min
  • Crossing of slopes of 60%, fords of 1.20m.
  • Horizontal field of fire: 445mil to the left, 675mil to the right.
  • Hydraulic aiming
  • Ammunition

  • Capacity of tractor: 56 shots, 32 on pallets and 24 in rack.
  • Can fire all 155 mm ammunition (the normal ammunition is the high-explosive shell).
  • Casings are combustible, which improves rate of fire: there is nothing to extract before reloading.
  • Operators

    Current operators

  •  France - 105
  •  Cyprus - 12
  •  Saudi Arabia - 28
  • See also

  • Soltam M-71
  • G5 howitzer
  • Media related to Canon 155 TRF1 at Wikimedia Commons

    References

    This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/TRF1

    Minuto

    Anchors

  • Mariz Manalo
  • Saleema Refran (Sports)
  • Snow Badua (Sports)
  • Jorge Bandola (Alternate)
  • Ian Ardiente (2007–2009)
  • Nina Liwag (Alternate)
  • Ninna Quevedo (2007–2008)
  • Audrey Goricetta (2009)

  • Podcasts:

    • canon 155 TRF1 - 155 mm howitzer

      #TRF1 #artillerie #armee #defense #OMAT #howitzer

      published: 26 May 2021
    • Ukrainian troops fire rounds from a French TRF-1 howitzer

      Ukrainian troops fire rounds from a French TRF-1 howitzer: Ukrainian troops fire rounds from a French TRF-1 howitzer towards a Russian supply road near the city of Kreminna in the eastern Luhansk region. #ukraine #ukrainewar #howitzer #howitzers #polishhowizter #russiaukrainewar #dailymail Original Article: http://www.dailymail.co.uk/news/article-11901705/Putin-wanted-cleansing-Ukraine-civilians-dragged-concentration-camps-documents-claim.html Original Video: http://www.dailymail.co.uk/video/news/video-2905517/Video-Ukrainian-troops-fire-rounds-French-TRF-1-howitzer.html Daily Mail Homepage: https://www.dailymail.co.uk/ Daily Mail Facebook: https://facebook.com/dailymail Daily Mail IG: https://instagram.com/dailymail Daily Mail Snap: https://www.snapchat.com/discover/Daily-Mail/839213...

      published: 27 Mar 2023
    • Reta Final TRF 1 Pós-Edital: Noções de Direito Constitucional - Prof. Adriane Fauth

      🦉 Cursos Completos para TRF 1 → https://estra.ink/45oHI1D 🥇 Estude com o material que mais aprova no Brasil → https://bit.ly/3ASP0O6 ▶ Assista a transmissão → Reta Final TRF 1 Pós-Edital: Noções de Direito Constitucional - Prof. Adriane Fauth 🎯Material de apoio - http://estrategi.ac/aprsmz 💼 Informações sobre o concurso: Concurso TRF1 Status: Edital publicado Banca: FGV Vagas: 25 + CR Requisito: nível superior Salário inicial: R$ 8.529,67 a R$ 13.994,78 [a partir de fevereiro de 2024] Edital: Edital-TRF1-2024 🎯 Confira nosso artigo no blog → https://www.estrategiaconcursos.com.br/blog/concurso-trf-1/ 📲 Receba diariamente notícias sobre concursos no WhatsApp → https://estr.at/QTwm 📣 Canal exclusivo no Telegram → https://t.me/JornadaDoEscrevente ✅ Aulas GRATUITAS aqui no YouTube, com o...

      published: 08 Aug 2024
    • M777 VS TRF1 Howitzer

      M777 VS TRF1 Howitzer This video you will see a comparison between two Towed Howitzers. One is M777 Howitzer and another one is TRF1 Howitzer. Content of this video: 00:00 Introduction 01:05 Calibers of these weapons 01:20 Howitzer Weight 01:35 Muzzle velocity 01:45 Firing range 02:00 rate of fire 02:30 Operators

      published: 26 May 2022
    • TRF1 howitzers to Ukraine: French Retired Old Man Join The War

      The TR-F1 towed howitzers were retired from the French army, but they will soon return to the battlefield, in Ukraine. According to a source from the French defense ministry, Ukraine has received six TRF1 155mm towed howitzers. Since the outbreak of hostilities, France has handed over a large number of supplies and equipment to Ukraine, covering the entire range of needs expressed by the Ukrainian side. Join as a member to help the channel grow further: https://www.youtube.com/channel/UCdW0Ug_lrQsUAkwZCs8aIgQ/join Would you like to give me a cup of coffee? A small donation like a cup of coffee that I have enough fuel to keep producing great content! Paypal account: https://www.paypal.me/dungtransport Become a Patreon: https://www.patreon.com/dungtranmilitary Even the smallest amount of...

      published: 13 Dec 2022
    • 🎥 TRF1 Minuto Ed. 336

      Fique por dentro das notícias que foram destaque no TRF1 e nas Seções Judiciárias: 🎥 Usina eólica construída na rota de aves em extinção precisa de estudo de impacto ambiental para funcionar. 🎥 Mantido o cancelamento do registro de medicamento por falta de cumprimento de exigências da Anisa. #DescriçãoDoVídeo: William Nascimento, branco, de cabelo curto preto, está em pé, vestindo camisa social cinza e branca listrada da vertical. Ao fundo, logotipos de diversos aplicativos e, ao longo do programa, trechos de vídeos reforçam o que ele fala, como imagens de usinas eólicas, reserva de arara-azul, laboratório, remédios e fachadas da Anvisa, MPF e TRF1 em Brasília. No canto superior direito, há o logotipo do TRF1 Minuto. #TRF1Minuto #TRF1 #JustiçaFederal #Decisões #Tribunal

      published: 23 Aug 2024
    • Russian Army Destroys First-Ever French TRF1 Towed Howitzer In Ukraine's Donetsk | Watch

      The Russian Army destroyed the first French-made TRF1 towed Howitzer, TASS news agency reported. The claim was made by Russia’s defense ministry on Wednesday. The Russian military further claimed to have wiped out nearly 1000 Ukrainian troops in multiple attacks across Ukraine. Times Of India Independently cannot verify battleground claims of the Russian military. Watch. #russiaukrainewar #putin #ukraine #ukraineconflict #howitzer #palestine #donetskwar #volodymyrzelensky #russiaukrainewar Subscribe to The Times of India's YouTube channel: http://goo.gl/WgIatu For daily news & updates and exclusive stories, follow the Times of India Facebook: https://www.facebook.com/TimesofIndia Instagram: https://www.instagram.com/timesofindia/ Download the app: http://toi.in/3SLUCa80 Follow the TOI...

      published: 30 May 2024
    • Французские гаубицы TRF1 армии Украины, обзор

      Появились первые кадры применения украинской армией французских 155-мм гаубиц TRF1. Гаубицы не были поставлены бесплатно, их закупила украинская армия. Гаубица TRF1 впервые была представлена в 1979 году, сейчас она снята с вооружения. TRF1 представляет собой 155-мм самодвижущуюся гаубицу. На большие расстояния орудие перевозится тягачом, а по полю боя может перемещаться при помощи собственной силовой установки со скоростью 8 км/ч. В процессе эксплуатации с гаубицами возникали различные трудности технического характера, это определило их судьбу и французская армия стала их заменять на САУ Цезарь. По своим огневым возможностям гаубицы TRF1 похожи на немецко-итальянские FH70, ранее переданные Украине, мы о них рассказывали. Дальность стрельбы орудия 24 км обычными снарядами и 30 км активно-ре...

      published: 17 Jan 2023
    • Banca definida até R$ 14,8 mil iniciais Analista-Técnico estudar pré-edital concurso público TRF 6

      Instagram: diego.tomazetto (mentorias/correções de discursivas/recursos resultado preliminar prova discursiva/ dúvidas gerais) Material: https://docs.google.com/presentation/d/1Dohs2vkAmPMo9k8qc7aqxTCVxv8Z80PU/edit?usp=drive_link&ouid=102138951604836131343&rtpof=true&sd=true Grupo Whatsapp: https://chat.whatsapp.com/LmrSAgPZN1TAe1Z0tPbusU Grupo Telegram: https://t.me/+kBrSGoVzA-A3MmYx Minha história em 8 minutos: https://youtu.be/m4ZKc8TcgtI Entrevista IPEA 2024 Estratégia: https://youtu.be/3SaI9SZFRWk?si=cT84NBJLBzJLpEAd Entrevista IPEA 2024 Direção: https://youtu.be/EIK2ogfefas?si=1bBnbPE5DB2msJt4 Entrevista por escrito aprovação NAS VAGAS concurso IPEA 2024 - Estratégia: https://www.estrategiaconcursos.com.br/blog/depoimento/concurso-ipea-aprovado-diego-tomazetto/ Entrevista co...

      published: 22 Aug 2024
    • The work of the calculation of the French 155 mm howitzer TRF1 in the eastern part of Ukraine

      #warukraine #russiaukrainewarvideos#warukraine #ukrainerussia #ukraine #ukrainewar #ukrainecrisis #ukraina #ukrainenews #ukraineunderattack #ukrain #ukrainian

      published: 17 Jan 2023
    canon 155 TRF1 - 155 mm howitzer
    3:11

    canon 155 TRF1 - 155 mm howitzer

    • Order:
    • Duration: 3:11
    • Uploaded Date: 26 May 2021
    • views: 11374
    #TRF1 #artillerie #armee #defense #OMAT #howitzer
    https://wn.com/Canon_155_Trf1_155_Mm_Howitzer
    Ukrainian troops fire rounds from a French TRF-1 howitzer
    3:39

    Ukrainian troops fire rounds from a French TRF-1 howitzer

    • Order:
    • Duration: 3:39
    • Uploaded Date: 27 Mar 2023
    • views: 40054
    Ukrainian troops fire rounds from a French TRF-1 howitzer: Ukrainian troops fire rounds from a French TRF-1 howitzer towards a Russian supply road near the city of Kreminna in the eastern Luhansk region. #ukraine #ukrainewar #howitzer #howitzers #polishhowizter #russiaukrainewar #dailymail Original Article: http://www.dailymail.co.uk/news/article-11901705/Putin-wanted-cleansing-Ukraine-civilians-dragged-concentration-camps-documents-claim.html Original Video: http://www.dailymail.co.uk/video/news/video-2905517/Video-Ukrainian-troops-fire-rounds-French-TRF-1-howitzer.html Daily Mail Homepage: https://www.dailymail.co.uk/ Daily Mail Facebook: https://facebook.com/dailymail Daily Mail IG: https://instagram.com/dailymail Daily Mail Snap: https://www.snapchat.com/discover/Daily-Mail/8392137033 Daily Mail Twitter: https://twitter.com/MailOnline Daily Mail Pinterest: https://pinterest.co.uk/dailymail Get the free Daily Mail mobile app: https://dailymail.co.uk/mobile
    https://wn.com/Ukrainian_Troops_Fire_Rounds_From_A_French_Trf_1_Howitzer
    Reta Final TRF 1 Pós-Edital: Noções de Direito Constitucional - Prof. Adriane Fauth
    3:53:40

    Reta Final TRF 1 Pós-Edital: Noções de Direito Constitucional - Prof. Adriane Fauth

    • Order:
    • Duration: 3:53:40
    • Uploaded Date: 08 Aug 2024
    • views: 5827
    🦉 Cursos Completos para TRF 1 → https://estra.ink/45oHI1D 🥇 Estude com o material que mais aprova no Brasil → https://bit.ly/3ASP0O6 ▶ Assista a transmissão → Reta Final TRF 1 Pós-Edital: Noções de Direito Constitucional - Prof. Adriane Fauth 🎯Material de apoio - http://estrategi.ac/aprsmz 💼 Informações sobre o concurso: Concurso TRF1 Status: Edital publicado Banca: FGV Vagas: 25 + CR Requisito: nível superior Salário inicial: R$ 8.529,67 a R$ 13.994,78 [a partir de fevereiro de 2024] Edital: Edital-TRF1-2024 🎯 Confira nosso artigo no blog → https://www.estrategiaconcursos.com.br/blog/concurso-trf-1/ 📲 Receba diariamente notícias sobre concursos no WhatsApp → https://estr.at/QTwm 📣 Canal exclusivo no Telegram → https://t.me/JornadaDoEscrevente ✅ Aulas GRATUITAS aqui no YouTube, com os MELHORES professores, a semana inteira: https://estr.at/canalec 🔔 Estratégia Concursos: ✓ Instagram → https://www.instagram.com/estrategiaconcursos/ ✓ Facebook → https://www.facebook.com/EstrategiaConcursos/ ✓ Twitter → https://twitter.com/EstratConcursos 💡 Saiba as maiores notícias dos concursos: ✓ Concursos Abertos → https://www.estrategiaconcursos.com.br/blog/concursos-abertos/ ✓ Concursos 2024 →https://www.estrategiaconcursos.com.br/blog/concursos-2024/ ✓ 𝑨𝒄𝒆𝒔𝒔𝒆 → https://www.estrategiaconcursos.com.br/blog/ "O segredo do sucesso é a constância no objetivo." #estratégiaconcursos #concursotrf1 #trf1
    https://wn.com/Reta_Final_Trf_1_Pós_Edital_Noções_De_Direito_Constitucional_Prof._Adriane_Fauth
    M777 VS TRF1 Howitzer
    2:44

    M777 VS TRF1 Howitzer

    • Order:
    • Duration: 2:44
    • Uploaded Date: 26 May 2022
    • views: 4630
    M777 VS TRF1 Howitzer This video you will see a comparison between two Towed Howitzers. One is M777 Howitzer and another one is TRF1 Howitzer. Content of this video: 00:00 Introduction 01:05 Calibers of these weapons 01:20 Howitzer Weight 01:35 Muzzle velocity 01:45 Firing range 02:00 rate of fire 02:30 Operators
    https://wn.com/M777_Vs_Trf1_Howitzer
    TRF1 howitzers to Ukraine: French Retired Old Man Join The War
    3:01

    TRF1 howitzers to Ukraine: French Retired Old Man Join The War

    • Order:
    • Duration: 3:01
    • Uploaded Date: 13 Dec 2022
    • views: 2716
    The TR-F1 towed howitzers were retired from the French army, but they will soon return to the battlefield, in Ukraine. According to a source from the French defense ministry, Ukraine has received six TRF1 155mm towed howitzers. Since the outbreak of hostilities, France has handed over a large number of supplies and equipment to Ukraine, covering the entire range of needs expressed by the Ukrainian side. Join as a member to help the channel grow further: https://www.youtube.com/channel/UCdW0Ug_lrQsUAkwZCs8aIgQ/join Would you like to give me a cup of coffee? A small donation like a cup of coffee that I have enough fuel to keep producing great content! Paypal account: https://www.paypal.me/dungtransport Become a Patreon: https://www.patreon.com/dungtranmilitary Even the smallest amount of money is your great encouragement for me. The requests for video content please send to: dungtranrequest@gmail.com ---------------- Hi guys, I'm Dung Tran. Thank you for watching this video. Don't forget to visit Dung Tran Military channel https://www.youtube.com/dungtranmilitaryblog Official website: https://Military-Wiki.com Fanpage: https://www.facebook.com/AOMilitarylover Fan Groups: https://www.facebook.com/groups/dungtranmilitary
    https://wn.com/Trf1_Howitzers_To_Ukraine_French_Retired_Old_Man_Join_The_War
    🎥 TRF1 Minuto Ed. 336
    1:33

    🎥 TRF1 Minuto Ed. 336

    • Order:
    • Duration: 1:33
    • Uploaded Date: 23 Aug 2024
    • views: 9
    Fique por dentro das notícias que foram destaque no TRF1 e nas Seções Judiciárias: 🎥 Usina eólica construída na rota de aves em extinção precisa de estudo de impacto ambiental para funcionar. 🎥 Mantido o cancelamento do registro de medicamento por falta de cumprimento de exigências da Anisa. #DescriçãoDoVídeo: William Nascimento, branco, de cabelo curto preto, está em pé, vestindo camisa social cinza e branca listrada da vertical. Ao fundo, logotipos de diversos aplicativos e, ao longo do programa, trechos de vídeos reforçam o que ele fala, como imagens de usinas eólicas, reserva de arara-azul, laboratório, remédios e fachadas da Anvisa, MPF e TRF1 em Brasília. No canto superior direito, há o logotipo do TRF1 Minuto. #TRF1Minuto #TRF1 #JustiçaFederal #Decisões #Tribunal
    https://wn.com/🎥_Trf1_Minuto_Ed._336
    Russian Army Destroys First-Ever French TRF1 Towed Howitzer In Ukraine's Donetsk | Watch
    3:30

    Russian Army Destroys First-Ever French TRF1 Towed Howitzer In Ukraine's Donetsk | Watch

    • Order:
    • Duration: 3:30
    • Uploaded Date: 30 May 2024
    • views: 58324
    The Russian Army destroyed the first French-made TRF1 towed Howitzer, TASS news agency reported. The claim was made by Russia’s defense ministry on Wednesday. The Russian military further claimed to have wiped out nearly 1000 Ukrainian troops in multiple attacks across Ukraine. Times Of India Independently cannot verify battleground claims of the Russian military. Watch. #russiaukrainewar #putin #ukraine #ukraineconflict #howitzer #palestine #donetskwar #volodymyrzelensky #russiaukrainewar Subscribe to The Times of India's YouTube channel: http://goo.gl/WgIatu For daily news & updates and exclusive stories, follow the Times of India Facebook: https://www.facebook.com/TimesofIndia Instagram: https://www.instagram.com/timesofindia/ Download the app: http://toi.in/3SLUCa80 Follow the TOI WhatsApp channel: https://bit.ly/3RYl0J9 Follow TOI+ for well-researched and in-depth news and analysis Facebook: https://www.facebook.com/timesofindiaplus Twitter: https://twitter.com/TOIPlus Instagram: https://www.instagram.com/toi_plus/
    https://wn.com/Russian_Army_Destroys_First_Ever_French_Trf1_Towed_Howitzer_In_Ukraine's_Donetsk_|_Watch
    Французские гаубицы TRF1 армии Украины, обзор
    1:14

    Французские гаубицы TRF1 армии Украины, обзор

    • Order:
    • Duration: 1:14
    • Uploaded Date: 17 Jan 2023
    • views: 7502
    Появились первые кадры применения украинской армией французских 155-мм гаубиц TRF1. Гаубицы не были поставлены бесплатно, их закупила украинская армия. Гаубица TRF1 впервые была представлена в 1979 году, сейчас она снята с вооружения. TRF1 представляет собой 155-мм самодвижущуюся гаубицу. На большие расстояния орудие перевозится тягачом, а по полю боя может перемещаться при помощи собственной силовой установки со скоростью 8 км/ч. В процессе эксплуатации с гаубицами возникали различные трудности технического характера, это определило их судьбу и французская армия стала их заменять на САУ Цезарь. По своим огневым возможностям гаубицы TRF1 похожи на немецко-итальянские FH70, ранее переданные Украине, мы о них рассказывали. Дальность стрельбы орудия 24 км обычными снарядами и 30 км активно-реактивными снарядами. Скорострельность 6 выстрелов в минуту. Расчет орудия 8 человек. #оружие #армия #техника #артиллерия #гаубица #украина #донбасс #weapons #army #equipment #artillery #howitzer #Ukraine #Donbass
    https://wn.com/Французские_Гаубицы_Trf1_Армии_Украины,_Обзор
    Banca definida até R$ 14,8 mil iniciais Analista-Técnico estudar pré-edital concurso público TRF 6
    21:39

    Banca definida até R$ 14,8 mil iniciais Analista-Técnico estudar pré-edital concurso público TRF 6

    • Order:
    • Duration: 21:39
    • Uploaded Date: 22 Aug 2024
    • views: 112
    Instagram: diego.tomazetto (mentorias/correções de discursivas/recursos resultado preliminar prova discursiva/ dúvidas gerais) Material: https://docs.google.com/presentation/d/1Dohs2vkAmPMo9k8qc7aqxTCVxv8Z80PU/edit?usp=drive_link&ouid=102138951604836131343&rtpof=true&sd=true Grupo Whatsapp: https://chat.whatsapp.com/LmrSAgPZN1TAe1Z0tPbusU Grupo Telegram: https://t.me/+kBrSGoVzA-A3MmYx Minha história em 8 minutos: https://youtu.be/m4ZKc8TcgtI Entrevista IPEA 2024 Estratégia: https://youtu.be/3SaI9SZFRWk?si=cT84NBJLBzJLpEAd Entrevista IPEA 2024 Direção: https://youtu.be/EIK2ogfefas?si=1bBnbPE5DB2msJt4 Entrevista por escrito aprovação NAS VAGAS concurso IPEA 2024 - Estratégia: https://www.estrategiaconcursos.com.br/blog/depoimento/concurso-ipea-aprovado-diego-tomazetto/ Entrevista com aprovados da área de controle: https://www.youtube.com/live/Akrv91sdQaQ?feature=share Entrevista com aprovado para o TST analista Taquigrafia: https://youtu.be/21tRSpkT_q8 Entrevista - nomeação para o CFQ: https://www.estrategiaconcursos.com.br/blog/depoimento/concurso-cfq-aprovado-diego-tomazetto/ Cursos que eu indico para sua preparação (o ideal é o concurseiro ter uma assinatura ilimitada, já que é possível estudar para vários cursos - comprando de maneira isolada o custo é maior e não permite acessar materiais de outros concursos): 1) Gran Cursos https://afiliados.grancursosonline.com.br/idevaffiliate.php?id=2324 Vantagens: possibilidade de dividir assinatura (o valor fica mais em conta por pessoa) regra geral é o mais barato em relação à assinatura ilimitada excelente material com vídeoaulas e pdf's para a maioria dos concursos disponíveis com pós e pré-edital projetos como 80/20 e treinamento intensivo 2) Direção Concursos https://www.direcaoconcursos.com.br/?idev_id=257 Vantagens: material em PDF de altíssimo nível projetos como Turma dos Feras 3) Estratégia https://www.estrategiaconcursos.com.br/ 4) IMP Concursos https://impconcursos.com.br/ Vantagens: tradição com pdf's de alta qualidade disponibilização de material de forma rápida para os alunos projetos como passo estratégico, bizu estratégico 4) IMP https://impconcursos.com.br/ Cursos de ALTO NÍVEL NAS MODALIDADES online e presencial.
    https://wn.com/Banca_Definida_Até_R_14,8_Mil_Iniciais_Analista_Técnico_Estudar_Pré_Edital_Concurso_Público_Trf_6
    The work of the calculation of the French 155 mm howitzer TRF1 in the eastern part of Ukraine
    3:28

    The work of the calculation of the French 155 mm howitzer TRF1 in the eastern part of Ukraine

    • Order:
    • Duration: 3:28
    • Uploaded Date: 17 Jan 2023
    • views: 126
    #warukraine #russiaukrainewarvideos#warukraine #ukrainerussia #ukraine #ukrainewar #ukrainecrisis #ukraina #ukrainenews #ukraineunderattack #ukrain #ukrainian
    https://wn.com/The_Work_Of_The_Calculation_Of_The_French_155_Mm_Howitzer_Trf1_In_The_Eastern_Part_Of_Ukraine
    • SIGA NO CAMINHO QUE DEUS TE MOSTRARÁ - Minuto com Deus de Hoje

      Apoie o Projeto Minuto Com Deus: PIX CNPJ 28792375000150 Casamento Firmado na Rocha. Clique aqui e garanta sua vaga: https://wa.me/message/TXQ2SAOSDEQNI1 WhatsApp (31) 975092109 (31) 99143-4951 Cruzeiro Minuto Com Deus: https://wa.me/message/YBONTRBWY2AIM1 Seja membro deste canal e ganhe benefícios: https://www.youtube.com/MinutocomDeus/Join Se inscreva nos nossos outros canais: https://www.youtube.com/@MinutoComDeusKids https://www.youtube.com/@reflexaominuto https://www.youtube.com/@PastorEdvaldoOliveira https://www.youtube.com/@minutocomdeusanimacoes Adquira NOVO LIVRO do Minuto com Deus: https://www.upbooks.com.br/livrominutocomdeus Instagram: @MinutocomDeus1 Tik Tok: https://vm.tiktok.com/ZM8KWLjjc/ Facebook.com/MinutoComDeus1 E-mail para contato: minutocomdeus01@gmail.com —...

      published: 04 Feb 2025
    • SEJA CORAJOSO: DEUS ESTÁ TE ENSINANDO A SER FORTE - Minuto Reflexão

      Seja membro deste canal e ganhe benefícios: https://www.youtube.com/channel/UCS2eZ12zHad8H_fqG0MhvKA/join Livro Minuto com Deus: https://www.upbooks.com.br/livrominutocomdeus Envie sua história, sua sugestão e muito mais: canalminutoreflexao@gmail.com Aqui em nosso canal são postadas mensagens diárias com o intuito de trazer reflexões sobre a vida cotidiana, saúde mental e crescimento pessoal, narradas pelo Pastor Edvaldo Oliveira, que é o idealizador e narrador do canal Minuto Com Deus. Se inscreva e acompanhe o nosso canal!

      published: 04 Feb 2025
    • ORAÇÃO PARA PROTEÇÃO NESTA SEMANA - Minuto com Deus de Hoje

      Apoie o Projeto Minuto Com Deus: PIX CNPJ 28792375000150 Casamento Firmado na Rocha. Clique aqui e garanta sua vaga: https://wa.me/message/TXQ2SAOSDEQNI1 WhatsApp (31) 975092109 (31) 99143-4951 Cruzeiro Minuto Com Deus: https://wa.me/message/YBONTRBWY2AIM1 Seja membro deste canal e ganhe benefícios: https://www.youtube.com/MinutocomDeus/Join Se inscreva nos nossos outros canais: https://www.youtube.com/@MinutoComDeusKids https://www.youtube.com/@reflexaominuto https://www.youtube.com/@PastorEdvaldoOliveira https://www.youtube.com/@minutocomdeusanimacoes Adquira NOVO LIVRO do Minuto com Deus: https://www.upbooks.com.br/livrominutocomdeus Instagram: @MinutocomDeus1 Tik Tok: https://vm.tiktok.com/ZM8KWLjjc/ Facebook.com/MinutoComDeus1 E-mail para contato: minutocomdeus01@gmail.com —...

      published: 03 Feb 2025
    • Hugo e Guilherme, Natanzinho Lima - 1 Minuto | DVD Fuleragem

      Contato para shows: (62) 98222-7600 // shows@hugoeguilherme.com.br Ouça agora no seu app de música: https://ads.somlivre.com.br/Fuleragem 1 MINUTO - LETRA Compositores: Leonardo Teixeira / Dalto Max / Vinícius D’Black Por onde quer que eu vá Vou te levar pra sempre A culpa não foi sua Os caminhos não são tão simples Mas eu vou seguir Viajo em pensamento Numa estrada de ilusões Que eu procuro dentro Do meu coração Toda vez que fecho os olhos É pra te encontrar A distância entre nós Não pode separar O que eu sinto por você Não vai passar Um minuto é muito pouco pra poder falar A distância entre nós Não pode separar E no final, eu sei que vai voltar Produção Geral: Fernando Resende, Diego Miyazato, André Neves e Ítalo Vezzani Direção Musical: Felipe Arná Direção de Vídeo: Victor VTX...

      published: 24 Jan 2025
    • Written By the Stars - Minuto [Official Music Video]

      MINUTO is a song diving deep into the importance of the present opportunity and the pain brought by the regret of not cherishing it. Artist: Written By the Stars Director: Niokz arcega Assistant Director: Jay Vee Villaraza DOP: Charles Temones Screenplay: Gela Quevedo PM: Mara Quevedo Prod. House: NKO Films/Rocket Project Cast: Dave Trinidad Yuki Santiago Management: Twice To Beat Distributor: Warner Music Philippines Special Thanks: Trix Parco Maritoni Soriano Joan Prestoza Words By: Robert Calingo, Maritoni Soriano and Justin Nudalo Produced, Mixed & Mastered By: Joey Santos of Love One Another Sound Production. "Minuto" is available on all digital platforms Stream here: https://wmp.lnk.to/minuto

      published: 11 Apr 2024
    • December Avenue - Huling Sandali (Lyrics) At sa bawat minuto ako'y di natuto

      Thank you for watching this video Don't forget to like, share, and subscribe! #hulingsandali #decemberavenue #lyrics #trending

      published: 22 Jan 2022
    • Written By The Stars performs "Minuto" LIVE on Wish 107.5 Bus

      Emo/pop-punk band Written By The Stars performs "Minuto" live on the Wish 107.5 Bus. This song delves into the "pain brought by the regret of not cherishing" the present moment. This Wishclusive is brought to you by Puregold. Subscribe at www.youtube.com/user/PuregoldChannel for more panalo surprises! Facebook: https://www.facebook.com/puregold.shopping/ X: https://twitter.com/Puregold_PH Instagram: https://instagram.com/puregold_ph Follow Wish 107.5's social media accounts! Facebook: https://facebook.com/WishFM1075/ X: https://twitter.com/Wish1075 Instagram: https://www.instagram.com/wish1075/ Visit Wish 107.5's awesome official website: www.wish1075.com. Stream this song on Spotify: https://open.spotify.com/track/0Rh2B6s9xIfz0uIcjYKIrP?si=d8c8f9dbcc9b4184 Follow Written B...

      published: 17 May 2024
    • Noticias de último minuto" Gobierno Dominicano arremete en contra de los Haitianos Indocumentados

      ÚLTIMO MINUTO; EE.UU LE DA UN ULTIMÁTUM A NICOLÁS MADURO HOY Boletín de último minuto" Viene el huracán a RD X NOTICIAS #X_Noticias #Noticias X Noticias_X ¡INCREÍBLE! Noticias de hoy Explotó la "BOMBA" en plenas Votaciones presidenciales Noticias de último minuto!! Explotó la "BOMBA" Roque Espaillat es traicionado por Ramfis Trujillo Noticias de último minuto!! "AGÁRRENSE" Haitianos salen a protestar en las calles de RD hoy Noticias de último minuto!! Haitiano le manda un contundente mensaje al Pueblo Dominicanos Noticias de último minuto!! Haitiano le da tremenda paliza a una mujer Dominicana en RD hoy Noticias de último minuto!! Los dominicanos le dan 48 horas a los Haitianos para salir de RD hoy Noticias de último minuto!! Ahora sí señores Exploto la "BOMBA" en Repúb...

      published: 03 Feb 2025
    • D Black - 1 Minuto (Official Video)

      Music video by D Black performing 1 Minuto. (C) 2008 Universal Music Ltda #DBlack #1Minuto #Vevo

      published: 26 Jun 2009
    • UMA NOVA SEMANA: APENAS UMA PALAVRA DE JESUS - Minuto com Deus de Hoje

      Apoie o Projeto Minuto Com Deus: PIX CNPJ 28792375000150 Casamento Firmado na Rocha. Clique aqui e garanta sua vaga: https://wa.me/message/TXQ2SAOSDEQNI1 WhatsApp (31) 975092109 (31) 99143-4951 Cruzeiro Minuto Com Deus: https://wa.me/message/YBONTRBWY2AIM1 Seja membro deste canal e ganhe benefícios: https://www.youtube.com/MinutocomDeus/Join Se inscreva nos nossos outros canais: https://www.youtube.com/@MinutoComDeusKids https://www.youtube.com/@reflexaominuto https://www.youtube.com/@PastorEdvaldoOliveira https://www.youtube.com/@minutocomdeusanimacoes Adquira NOVO LIVRO do Minuto com Deus: https://www.upbooks.com.br/livrominutocomdeus Instagram: @MinutocomDeus1 Tik Tok: https://vm.tiktok.com/ZM8KWLjjc/ Facebook.com/MinutoComDeus1 E-mail para contato: minutocomdeus01@gmail.com —...

      published: 03 Feb 2025
    SIGA NO CAMINHO QUE DEUS TE MOSTRARÁ - Minuto com Deus de Hoje
    16:59

    SIGA NO CAMINHO QUE DEUS TE MOSTRARÁ - Minuto com Deus de Hoje

    • Order:
    • Duration: 16:59
    • Uploaded Date: 04 Feb 2025
    • views: 5047
    Apoie o Projeto Minuto Com Deus: PIX CNPJ 28792375000150 Casamento Firmado na Rocha. Clique aqui e garanta sua vaga: https://wa.me/message/TXQ2SAOSDEQNI1 WhatsApp (31) 975092109 (31) 99143-4951 Cruzeiro Minuto Com Deus: https://wa.me/message/YBONTRBWY2AIM1 Seja membro deste canal e ganhe benefícios: https://www.youtube.com/MinutocomDeus/Join Se inscreva nos nossos outros canais: https://www.youtube.com/@MinutoComDeusKids https://www.youtube.com/@reflexaominuto https://www.youtube.com/@PastorEdvaldoOliveira https://www.youtube.com/@minutocomdeusanimacoes Adquira NOVO LIVRO do Minuto com Deus: https://www.upbooks.com.br/livrominutocomdeus Instagram: @MinutocomDeus1 Tik Tok: https://vm.tiktok.com/ZM8KWLjjc/ Facebook.com/MinutoComDeus1 E-mail para contato: minutocomdeus01@gmail.com —————————————————————— #MinutocomDeus #MinutocomDeusHoje #PastorEdvaldoOliveira
    https://wn.com/Siga_No_Caminho_Que_Deus_Te_Mostrará_Minuto_Com_Deus_De_Hoje
    SEJA CORAJOSO: DEUS ESTÁ TE ENSINANDO A SER FORTE - Minuto Reflexão
    15:57

    SEJA CORAJOSO: DEUS ESTÁ TE ENSINANDO A SER FORTE - Minuto Reflexão

    • Order:
    • Duration: 15:57
    • Uploaded Date: 04 Feb 2025
    • views: 1018
    Seja membro deste canal e ganhe benefícios: https://www.youtube.com/channel/UCS2eZ12zHad8H_fqG0MhvKA/join Livro Minuto com Deus: https://www.upbooks.com.br/livrominutocomdeus Envie sua história, sua sugestão e muito mais: canalminutoreflexao@gmail.com Aqui em nosso canal são postadas mensagens diárias com o intuito de trazer reflexões sobre a vida cotidiana, saúde mental e crescimento pessoal, narradas pelo Pastor Edvaldo Oliveira, que é o idealizador e narrador do canal Minuto Com Deus. Se inscreva e acompanhe o nosso canal!
    https://wn.com/Seja_Corajoso_Deus_Está_Te_Ensinando_A_Ser_Forte_Minuto_Reflexão
    ORAÇÃO PARA PROTEÇÃO NESTA SEMANA - Minuto com Deus de Hoje
    3:11:31

    ORAÇÃO PARA PROTEÇÃO NESTA SEMANA - Minuto com Deus de Hoje

    • Order:
    • Duration: 3:11:31
    • Uploaded Date: 03 Feb 2025
    • views: 9531
    Apoie o Projeto Minuto Com Deus: PIX CNPJ 28792375000150 Casamento Firmado na Rocha. Clique aqui e garanta sua vaga: https://wa.me/message/TXQ2SAOSDEQNI1 WhatsApp (31) 975092109 (31) 99143-4951 Cruzeiro Minuto Com Deus: https://wa.me/message/YBONTRBWY2AIM1 Seja membro deste canal e ganhe benefícios: https://www.youtube.com/MinutocomDeus/Join Se inscreva nos nossos outros canais: https://www.youtube.com/@MinutoComDeusKids https://www.youtube.com/@reflexaominuto https://www.youtube.com/@PastorEdvaldoOliveira https://www.youtube.com/@minutocomdeusanimacoes Adquira NOVO LIVRO do Minuto com Deus: https://www.upbooks.com.br/livrominutocomdeus Instagram: @MinutocomDeus1 Tik Tok: https://vm.tiktok.com/ZM8KWLjjc/ Facebook.com/MinutoComDeus1 E-mail para contato: minutocomdeus01@gmail.com —————————————————————— #MinutocomDeus #MinutocomDeusHoje #PastorEdvaldoOliveira
    https://wn.com/Oração_Para_Proteção_Nesta_Semana_Minuto_Com_Deus_De_Hoje
    Hugo e Guilherme, Natanzinho Lima - 1 Minuto | DVD Fuleragem
    2:39

    Hugo e Guilherme, Natanzinho Lima - 1 Minuto | DVD Fuleragem

    • Order:
    • Duration: 2:39
    • Uploaded Date: 24 Jan 2025
    • views: 2291978
    Contato para shows: (62) 98222-7600 // shows@hugoeguilherme.com.br Ouça agora no seu app de música: https://ads.somlivre.com.br/Fuleragem 1 MINUTO - LETRA Compositores: Leonardo Teixeira / Dalto Max / Vinícius D’Black Por onde quer que eu vá Vou te levar pra sempre A culpa não foi sua Os caminhos não são tão simples Mas eu vou seguir Viajo em pensamento Numa estrada de ilusões Que eu procuro dentro Do meu coração Toda vez que fecho os olhos É pra te encontrar A distância entre nós Não pode separar O que eu sinto por você Não vai passar Um minuto é muito pouco pra poder falar A distância entre nós Não pode separar E no final, eu sei que vai voltar Produção Geral: Fernando Resende, Diego Miyazato, André Neves e Ítalo Vezzani Direção Musical: Felipe Arná Direção de Vídeo: Victor VTX Filmes Direção de Fotografia: Everton Wolf Direção Executiva: Eduardo Rodrigues, Italo Vezzani.
    https://wn.com/Hugo_E_Guilherme,_Natanzinho_Lima_1_Minuto_|_Dvd_Fuleragem
    Written By the Stars - Minuto [Official Music Video]
    3:58

    Written By the Stars - Minuto [Official Music Video]

    • Order:
    • Duration: 3:58
    • Uploaded Date: 11 Apr 2024
    • views: 24648
    MINUTO is a song diving deep into the importance of the present opportunity and the pain brought by the regret of not cherishing it. Artist: Written By the Stars Director: Niokz arcega Assistant Director: Jay Vee Villaraza DOP: Charles Temones Screenplay: Gela Quevedo PM: Mara Quevedo Prod. House: NKO Films/Rocket Project Cast: Dave Trinidad Yuki Santiago Management: Twice To Beat Distributor: Warner Music Philippines Special Thanks: Trix Parco Maritoni Soriano Joan Prestoza Words By: Robert Calingo, Maritoni Soriano and Justin Nudalo Produced, Mixed & Mastered By: Joey Santos of Love One Another Sound Production. "Minuto" is available on all digital platforms Stream here: https://wmp.lnk.to/minuto
    https://wn.com/Written_By_The_Stars_Minuto_Official_Music_Video
    December Avenue - Huling Sandali (Lyrics) At sa bawat minuto ako'y di natuto
    5:42

    December Avenue - Huling Sandali (Lyrics) At sa bawat minuto ako'y di natuto

    • Order:
    • Duration: 5:42
    • Uploaded Date: 22 Jan 2022
    • views: 474293
    Thank you for watching this video Don't forget to like, share, and subscribe! #hulingsandali #decemberavenue #lyrics #trending
    https://wn.com/December_Avenue_Huling_Sandali_(Lyrics)_At_Sa_Bawat_Minuto_Ako'y_Di_Natuto
    Written By The Stars performs "Minuto" LIVE on Wish 107.5 Bus
    3:47

    Written By The Stars performs "Minuto" LIVE on Wish 107.5 Bus

    • Order:
    • Duration: 3:47
    • Uploaded Date: 17 May 2024
    • views: 33741
    Emo/pop-punk band Written By The Stars performs "Minuto" live on the Wish 107.5 Bus. This song delves into the "pain brought by the regret of not cherishing" the present moment. This Wishclusive is brought to you by Puregold. Subscribe at www.youtube.com/user/PuregoldChannel for more panalo surprises! Facebook: https://www.facebook.com/puregold.shopping/ X: https://twitter.com/Puregold_PH Instagram: https://instagram.com/puregold_ph Follow Wish 107.5's social media accounts! Facebook: https://facebook.com/WishFM1075/ X: https://twitter.com/Wish1075 Instagram: https://www.instagram.com/wish1075/ Visit Wish 107.5's awesome official website: www.wish1075.com. Stream this song on Spotify: https://open.spotify.com/track/0Rh2B6s9xIfz0uIcjYKIrP?si=d8c8f9dbcc9b4184 Follow Written By The Stars on social media: Facebook: https://www.facebook.com/WrittenByTheStarsOfficial X: https://twitter.com/wrttnbythstrs Instagram: https://nstagram.com/writtenbythestarsofficial/ Get updates from Warner Music Philippines and follow them online: Facebook: https://www.facebook.com/warnermusicph/ X: https://twitter.com/WarnerMusicPH Instagram: https://instagram.com/warnermusicph #WISHclusive *** Wish 107.5 is an all-hits FM radio station based in Quezon City, Philippines. It has truly gone out, beyond the conventional, to provide multiple platforms where great Filipino talents can perform and showcase their music. With the Wish 107.5 Bus, people now don't need to buy concert tickets just to see their favorite artists perform on stage. However, innovation doesn’t stop in just delivering the coolest musical experience — Wish 107.5 has set the bar higher as it tapped the power of technology to let the Filipino artistry shine in the global stage. With its intensified investment in its digital platforms, it has transformed itself from being a local FM station to becoming a sought-after WISHclusive gateway to the world. For more information, visit www.wish1075.com. For all-day and all-night wishful music, tune in via your radio or download the Wish 107.5 app (available for both iOS and Android users). Feel free to SHARE this video but DO NOT REUPLOAD. Thank you!
    https://wn.com/Written_By_The_Stars_Performs_Minuto_Live_On_Wish_107.5_Bus
    Noticias de último minuto" Gobierno Dominicano arremete en contra de los Haitianos Indocumentados
    22:08

    Noticias de último minuto" Gobierno Dominicano arremete en contra de los Haitianos Indocumentados

    • Order:
    • Duration: 22:08
    • Uploaded Date: 03 Feb 2025
    • views: 14800
    ÚLTIMO MINUTO; EE.UU LE DA UN ULTIMÁTUM A NICOLÁS MADURO HOY Boletín de último minuto" Viene el huracán a RD X NOTICIAS #X_Noticias #Noticias X Noticias_X ¡INCREÍBLE! Noticias de hoy Explotó la "BOMBA" en plenas Votaciones presidenciales Noticias de último minuto!! Explotó la "BOMBA" Roque Espaillat es traicionado por Ramfis Trujillo Noticias de último minuto!! "AGÁRRENSE" Haitianos salen a protestar en las calles de RD hoy Noticias de último minuto!! Haitiano le manda un contundente mensaje al Pueblo Dominicanos Noticias de último minuto!! Haitiano le da tremenda paliza a una mujer Dominicana en RD hoy Noticias de último minuto!! Los dominicanos le dan 48 horas a los Haitianos para salir de RD hoy Noticias de último minuto!! Ahora sí señores Exploto la "BOMBA" en República Dominicana hoy Noticias de último minuto!! Mira la "Bomba" que acaba de explotar Aserca de la Joven Muerta en Cotui Yennely Andreina Duarte Noticias de último minuto!! Mira la "Bomba" que acaba de soltar Luis Abinader hoy en la semanal Noticias de último minuto; Mira lo que acaba de pasar ahora mismo entre República Dominicana y HAITI Noticias de último minuto!! Mira lo que acaba de pasar hoy en RD con tekashi 6ix9ine Y Luis Abinader NOTICIAS DE ÚLTIMO MINUTO!! FUERTE MENSAJE PARA EL PRESIDENTE DE LA REPÚBLICA LUIS ABINADER HOY Noticias de último minuto!! Haitianos entran en manada al territorio Dominicano a Robar Arroz hoy Noticias de último minuto!! Yadira Martes arremete encontra del Abogado Jose Martines Brito Noticias de último minuto!! Atención Pueblo Dominicano Habla el Presidente Luis Abinader hoy "HAY MI MADRE" HIJA DE KIKO LA QUEMA REVELA DATOS IMPORTANTES A LA POLICÍA NACIONAL HOY Noticias de último minuto; Fuerte debate entre Guatemala y República Dominicana hoy "LA SEMANAL" Noticias de último minuto!! Guardias haitianos entran a terror a la República Dominicana hoy Noticias de hoy de Kiko la quema #kiko_la_quema Policía Nacional Noticias de último minuto; El Expresidente de España arremete encontrá del Gobierno Haitiano hoy HAY PAPÁ!! LEDAN DEBAJA AL DIRECTOR GENERAL DE LA POLICÍA NACIONAL EDUARDO ALBERTO THEN HOY Noticias de último minuto!! Mira lo que acaba de pasar ahora entre Haití y RD Noticias de último minutos Haití y RD Noticia de último minutos señores Mira lo que acaba de pasar ahora mismo Tormenta franklin Ultimas Información hoy #tormenta_franklin #COE_RD #Kenia_Haiti #RAMON_TOLENTINO #NOTICIAS_DE_TOLENTINO #TOLENTINO_HOY #RAMON_TOLENTINO_HOY Noticia de último minuto problemas con Haití y RD hoy NOTICIA DE ÚLTIMO MINUTO ¡¡SEÑORES!! PASO HOY INFORMACIÓN DE ÚLTIMO MINUTO ¡¡SEÑORES!! HOY DE ÚLTIMO MINUTO ¡¡SEÑORES!! NOTICIA DE HOY DE ÚLTIMO MINUTO: ¡¡SEÑORES!! APRESAN A "CARA DE BLOCK” Noticia de último minuto!! Atención Pueblo Dominicano acaba de hablar el presidente Luis Abinader DE ÚLTIMO MINUTO: Operación Antipulpo #Noticia de hoy RD DE ÚLTIMO MINUTO: MIRA LO QUE ACABA DE PASAR HOY EN RD #noticia DE ÚLTIMO MINUTO: ¡¡SEÑORES!! MIRA LO QUE PASO HOY Noticia de hoy RD. NOTICIA DE HOY HAITÍ. DE ÚLTIMO MINUTO NOTICIA. DE ÚLTIMA HORA. NOTICIA DOMINICANA. DE ÚLTIMO MINUTO: ¡¡SEÑORES!! TREMENDO LÍO HOY TREMENDO PROBLEMA ¡¡SEÑORES!! ACABA DE PASAR HOY Operación Medusa. Caso Medusa. Noticia medusa RD. Información de último. X-FUL NOTICIAS X-FUL X FUL NOTICIAS NOTICIAS X FUL X FULL X FULL Operación Calamar #Operación_Calamar #X_FULL #noticia #XFUL #X-FUL X-FULL X FULLfe
    https://wn.com/Noticias_De_Último_Minuto_Gobierno_Dominicano_Arremete_En_Contra_De_Los_Haitianos_Indocumentados
    D Black - 1 Minuto (Official Video)
    3:35

    D Black - 1 Minuto (Official Video)

    • Order:
    • Duration: 3:35
    • Uploaded Date: 26 Jun 2009
    • views: 62462451
    Music video by D Black performing 1 Minuto. (C) 2008 Universal Music Ltda #DBlack #1Minuto #Vevo
    https://wn.com/D_Black_1_Minuto_(Official_Video)
    UMA NOVA SEMANA: APENAS UMA PALAVRA DE JESUS - Minuto com Deus de Hoje
    16:45

    UMA NOVA SEMANA: APENAS UMA PALAVRA DE JESUS - Minuto com Deus de Hoje

    • Order:
    • Duration: 16:45
    • Uploaded Date: 03 Feb 2025
    • views: 40498
    Apoie o Projeto Minuto Com Deus: PIX CNPJ 28792375000150 Casamento Firmado na Rocha. Clique aqui e garanta sua vaga: https://wa.me/message/TXQ2SAOSDEQNI1 WhatsApp (31) 975092109 (31) 99143-4951 Cruzeiro Minuto Com Deus: https://wa.me/message/YBONTRBWY2AIM1 Seja membro deste canal e ganhe benefícios: https://www.youtube.com/MinutocomDeus/Join Se inscreva nos nossos outros canais: https://www.youtube.com/@MinutoComDeusKids https://www.youtube.com/@reflexaominuto https://www.youtube.com/@PastorEdvaldoOliveira https://www.youtube.com/@minutocomdeusanimacoes Adquira NOVO LIVRO do Minuto com Deus: https://www.upbooks.com.br/livrominutocomdeus Instagram: @MinutocomDeus1 Tik Tok: https://vm.tiktok.com/ZM8KWLjjc/ Facebook.com/MinutoComDeus1 E-mail para contato: minutocomdeus01@gmail.com —————————————————————— #MinutocomDeus #MinutocomDeusHoje #PastorEdvaldoOliveira
    https://wn.com/Uma_Nova_Semana_Apenas_Uma_Palavra_De_Jesus_Minuto_Com_Deus_De_Hoje
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Ukrainian troops fire rounds from a French TRF-1 howitzer
      3:39
      Ukrainian troops fire rounds from a French TRF-1 howitzerremove from playlist
    • Reta Final TRF 1 Pós-Edital: Noções de Direito Constitucional - Prof. Adriane Fauth
      3:53:40
      Reta Final TRF 1 Pós-Edital: Noções de Direito Constitucional - Prof. Adriane Fauthremove from playlist
    • M777 VS TRF1 Howitzer
      2:44
      M777 VS TRF1 Howitzerremove from playlist
    • TRF1 howitzers to Ukraine: French Retired Old Man Join The War
      3:01
      TRF1 howitzers to Ukraine: French Retired Old Man Join The Warremove from playlist
    • 🎥 TRF1 Minuto Ed. 336
      1:33
      🎥 TRF1 Minuto Ed. 336remove from playlist
    • Russian Army Destroys First-Ever French TRF1 Towed Howitzer In Ukraine's Donetsk | Watch
      3:30
      Russian Army Destroys First-Ever French TRF1 Towed Howitzer In Ukraine's Donetsk | Watchremove from playlist
    • Французские гаубицы TRF1 армии Украины, обзор
      1:14
      Французские гаубицы TRF1 армии Украины, обзорremove from playlist
    • Banca definida até R$ 14,8 mil iniciais Analista-Técnico estudar pré-edital concurso público TRF 6
      21:39
      Banca definida até R$ 14,8 mil iniciais Analista-Técnico estudar pré-edital concurso público TRF 6remove from playlist
    • The work of the calculation of the French 155 mm howitzer TRF1 in the eastern part of Ukraine
      3:28
      The work of the calculation of the French 155 mm howitzer TRF1 in the eastern part of Ukraineremove from playlist
    PLAYLIST TIME: 0:00 / 4:37:39

    canon 155 TRF1 - 155 mm howitzer

    #TRF1 #artillerie #armee #defense #OMAT #howitzer
    3:11
    canon 155 TRF1 - 155 mm howitzer
    #TRF1 #artillerie #armee #defense #OMAT #howitzer
    published: 26 May 2021
    Play in Full Screen
    3:39
    Ukrainian troops fire rounds from a French TRF-1 howitzer
    Ukrainian troops fire rounds from a French TRF-1 howitzer: Ukrainian troops fire rounds fr...
    published: 27 Mar 2023
    Play in Full Screen
    3:53:40
    Reta Final TRF 1 Pós-Edital: Noções de Direito Constitucional - Prof. Adriane Fauth
    🦉 Cursos Completos para TRF 1 → https://estra.ink/45oHI1D 🥇 Estude com o material que mais...
    published: 08 Aug 2024
    Play in Full Screen
    2:44
    M777 VS TRF1 Howitzer
    M777 VS TRF1 Howitzer This video you will see a comparison between two Towed Howitzers. O...
    published: 26 May 2022
    Play in Full Screen
    3:01
    TRF1 howitzers to Ukraine: French Retired Old Man Join The War
    The TR-F1 towed howitzers were retired from the French army, but they will soon return to ...
    published: 13 Dec 2022
    Play in Full Screen
    1:33
    🎥 TRF1 Minuto Ed. 336
    Fique por dentro das notícias que foram destaque no TRF1 e nas Seções Judiciárias: 🎥 Usi...
    published: 23 Aug 2024
    Play in Full Screen
    3:30
    Russian Army Destroys First-Ever French TRF1 Towed Howitzer In Ukraine's Donetsk | Watch
    The Russian Army destroyed the first French-made TRF1 towed Howitzer, TASS news agency rep...
    published: 30 May 2024
    Play in Full Screen
    1:14
    Французские гаубицы TRF1 армии Украины, обзор
    Появились первые кадры применения украинской армией французских 155-мм гаубиц TRF1. Гаубиц...
    published: 17 Jan 2023
    Play in Full Screen
    21:39
    Banca definida até R$ 14,8 mil iniciais Analista-Técnico estudar pré-edital concurso público TRF 6
    Instagram: diego.tomazetto (mentorias/correções de discursivas/recursos resultado prelimin...
    published: 22 Aug 2024
    Play in Full Screen
    3:28
    The work of the calculation of the French 155 mm howitzer TRF1 in the eastern part of Ukraine
    #warukraine #russiaukrainewarvideos#warukraine #ukrainerussia #ukraine #ukrainewar #uk...
    published: 17 Jan 2023
    Play in Full Screen

    TRF1

    The Tr-F1 is a 155mm French towed howitzer produced by Nexter (ex Giat Industries) and used by the French army.

    Performance

  • Setting out of battery: 2 min
  • Crossing of slopes of 60%, fords of 1.20m.
  • Horizontal field of fire: 445mil to the left, 675mil to the right.
  • Hydraulic aiming
  • Ammunition

  • Capacity of tractor: 56 shots, 32 on pallets and 24 in rack.
  • Can fire all 155 mm ammunition (the normal ammunition is the high-explosive shell).
  • Casings are combustible, which improves rate of fire: there is nothing to extract before reloading.
  • Operators

    Current operators

  •  France - 105
  •  Cyprus - 12
  •  Saudi Arabia - 28
  • See also

  • Soltam M-71
  • G5 howitzer
  • Media related to Canon 155 TRF1 at Wikimedia Commons

    References

    This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/TRF1
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • SIGA NO CAMINHO QUE DEUS TE MOSTRARÁ - Minuto com Deus de Hoje
      16:59
      SIGA NO CAMINHO QUE DEUS TE MOSTRARÁ - Minuto com Deus de Hojeremove from playlist
    • SEJA CORAJOSO: DEUS ESTÁ TE ENSINANDO A SER FORTE - Minuto Reflexão
      15:57
      SEJA CORAJOSO: DEUS ESTÁ TE ENSINANDO A SER FORTE - Minuto Reflexãoremove from playlist
    • ORAÇÃO PARA PROTEÇÃO NESTA SEMANA - Minuto com Deus de Hoje
      3:11:31
      ORAÇÃO PARA PROTEÇÃO NESTA SEMANA - Minuto com Deus de Hojeremove from playlist
    • Hugo e Guilherme, Natanzinho Lima - 1 Minuto | DVD Fuleragem
      2:39
      Hugo e Guilherme, Natanzinho Lima - 1 Minuto | DVD Fuleragemremove from playlist
    • Written By the Stars - Minuto [Official Music Video]
      3:58
      Written By the Stars - Minuto [Official Music Video]remove from playlist
    • December Avenue - Huling Sandali (Lyrics) At sa bawat minuto ako'y di natuto
      5:42
      December Avenue - Huling Sandali (Lyrics) At sa bawat minuto ako'y di natutoremove from playlist
    • Written By The Stars performs
      3:47
      Written By The Stars performs "Minuto" LIVE on Wish 107.5 Busremove from playlist
    • Noticias de último minuto
      22:08
      Noticias de último minuto" Gobierno Dominicano arremete en contra de los Haitianos Indocumentadosremove from playlist
    • D Black - 1 Minuto (Official Video)
      3:35
      D Black - 1 Minuto (Official Video)remove from playlist
    • UMA NOVA SEMANA: APENAS UMA PALAVRA DE JESUS - Minuto com Deus de Hoje
      16:45
      UMA NOVA SEMANA: APENAS UMA PALAVRA DE JESUS - Minuto com Deus de Hojeremove from playlist
    PLAYLIST TIME: 0:00 / 4:43:01

    SIGA NO CAMINHO QUE DEUS TE MOSTRARÁ - Minuto com Deus de Hoje

    Apoie o Projeto Minuto Com Deus: PIX CNPJ 28792375000150 Casamento Firmado na Rocha. Clique aqui e garanta sua vaga: https://wa.me/message/TXQ2SAOSDEQNI1 WhatsApp (31) 975092109 (31) 99143-4951 Cruzeiro Minuto Com Deus: https://wa.me/message/YBONTRBWY2AIM1 Seja membro deste canal e ganhe benefícios: https://www.youtube.com/MinutocomDeus/Join Se inscreva nos nossos outros canais: https://www.youtube.com/@MinutoComDeusKids https://www.youtube.com/@reflexaominuto https://www.youtube.com/@PastorEdvaldoOliveira https://www.youtube.com/@minutocomdeusanimacoes Adquira NOVO LIVRO do Minuto com Deus: https://www.upbooks.com.br/livrominutocomdeus Instagram: @MinutocomDeus1 Tik Tok: https://vm.tiktok.com/ZM8KWLjjc/ Facebook.com/MinutoComDeus1 E-mail para contato: minutocomdeus01@gmail.com —————————————————————— #MinutocomDeus #MinutocomDeusHoje #PastorEdvaldoOliveira
    16:59
    SIGA NO CAMINHO QUE DEUS TE MOSTRARÁ - Minuto com Deus de Hoje
    Apoie o Projeto Minuto Com Deus: PIX CNPJ 28792375000150 Casamento Firmado na Rocha. Cliq...
    published: 04 Feb 2025
    Play in Full Screen
    15:57
    SEJA CORAJOSO: DEUS ESTÁ TE ENSINANDO A SER FORTE - Minuto Reflexão
    Seja membro deste canal e ganhe benefícios: https://www.youtube.com/channel/UCS2eZ12zHad8H...
    published: 04 Feb 2025
    Play in Full Screen
    3:11:31
    ORAÇÃO PARA PROTEÇÃO NESTA SEMANA - Minuto com Deus de Hoje
    Apoie o Projeto Minuto Com Deus: PIX CNPJ 28792375000150 Casamento Firmado na Rocha. Cliq...
    published: 03 Feb 2025
    Play in Full Screen
    2:39
    Hugo e Guilherme, Natanzinho Lima - 1 Minuto | DVD Fuleragem
    Contato para shows: (62) 98222-7600 // shows@hugoeguilherme.com.br Ouça agora no seu app...
    published: 24 Jan 2025
    Play in Full Screen
    3:58
    Written By the Stars - Minuto [Official Music Video]
    MINUTO is a song diving deep into the importance of the present opportunity and the pain b...
    published: 11 Apr 2024
    Play in Full Screen
    5:42
    December Avenue - Huling Sandali (Lyrics) At sa bawat minuto ako'y di natuto
    Thank you for watching this video Don't forget to like, share, and subscribe! #hulingsand...
    published: 22 Jan 2022
    Play in Full Screen
    3:47
    Written By The Stars performs "Minuto" LIVE on Wish 107.5 Bus
    Emo/pop-punk band Written By The Stars performs "Minuto" live on the Wish 107.5 Bus. This ...
    published: 17 May 2024
    Play in Full Screen
    22:08
    Noticias de último minuto" Gobierno Dominicano arremete en contra de los Haitianos Indocumentados
    ÚLTIMO MINUTO; EE.UU LE DA UN ULTIMÁTUM A NICOLÁS MADURO HOY Boletín de último minuto" ...
    published: 03 Feb 2025
    Play in Full Screen
    3:35
    D Black - 1 Minuto (Official Video)
    Music video by D Black performing 1 Minuto. (C) 2008 Universal Music Ltda #DBlack #1Minut...
    published: 26 Jun 2009
    Play in Full Screen
    16:45
    UMA NOVA SEMANA: APENAS UMA PALAVRA DE JESUS - Minuto com Deus de Hoje
    Apoie o Projeto Minuto Com Deus: PIX CNPJ 28792375000150 Casamento Firmado na Rocha. Cliq...
    published: 03 Feb 2025
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×