Se Me Olvidó

Se Me Olvidó (English: "I Forgot") is a song by Peruvian singer-songwriter Gian Marco released by Sony Music Latin and Crescent Moon Records in early 2002 as the lead single of his sixth studio album A Tiempo. It was his first single to be released Internationally.[1]

"Se Me Olvidó"
Single by Gian Marco
from the album A Tiempo
Released2002
GenreLatin Pop
Length4:13
LabelSony Music Latin, Crescent Moon Records
Songwriter(s)
  • Gian Marco Zignago
Producer(s)Emilio Estefan
Gian Marco singles chronology
"El Ultimo Adios (The Last Goodbye)"
(2001)
"Se Me Olvidó"
(2002)
"Lamento"
(2002)
Music video
"Se Me Olvidó" on YouTube

Release

The song was released in early 2002 on mainstream radio and CD single. A dance version and a salsa version of the song were also included in the album.

Commercial performance

The song was a success throughout Latin America and parts of Europe. It launched Gian Marco's career internationally becoming his first song to enter the U.S. Billboard charts making him the first, and currently only, Peruvian artist to reach the U.S. Billboard Hot Latin Songs chart. The song also reached number six on the Los Principales radio airplay chart in Spain on October 26, 2002.[2] The song was nominated for Record of the Year at the Latin Grammy Awards in 2002.[3]

Music video

The music video for the song shows Gian Marco sitting on a window ledge in his apartment playing his guitar while writing the song. He then goes walking around town singing the song.

Charts

Chart (2002) Peak
position
US Hot Latin Songs (Billboard)[4] 39
US Latin Pop Songs (Billboard)[5] 26
US Latin Airplay (Billboard)[6] 39
US Latin Tropical Airplay (Billboard)[7] 31

Accolades

Latin Grammy Awards

Year Nominee / work Award Result
2002 3rd Latin Grammy Awards Record of the Year Nominated
gollark: The current version uses a bunch of `defer`s to deallocate stuff as needed (I don't *think* it has any horrible memory leaks!). This works fine given that that stuff is all within one function, but I need similar logic in another one.
gollark: I just want to know how to idiomatically make GCable wrappers for the various C objects.
gollark: No, I have that stuff done.
gollark: I want a *different* set of "OPERATIONS ON RELEVANT NODE THING" and no HTML generation at the end, and it would be bees to just copy-paste the function here.
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```

References

  1. "Se Me Olvidó / Gian Marco - AllMusic". AllMusic. Retrieved 14 November 2019.
  2. Salaverri, Fernando (September 2005). Sólo éxitos: año a año, 1959–2002 (1st ed.). Spain: Fundación Autor-SGAE. ISBN 84-8048-639-2.
  3. "Selected Nominees For The Third Latin Grammy Awards". AllBusiness.com. August 3, 2002. Archived from the original on January 7, 2010. Retrieved August 27, 2010.
  4. "Gian Marco Chart History (Hot Latin Songs)". Billboard. Retrieved March 24, 2016.
  5. "Gian Marco Chart History (Latin Pop Songs)". Billboard. Retrieved March 24, 2016.
  6. "Gian Marco Chart History (Latin Airplay)". Billboard. Retrieved March 24, 2016.
  7. "Gian Marco Chart History (Latin Tropical Airplay)". Billboard.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.