Jump to content

karthikvasan

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

karthikvasan's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. yes i tired all possibilities which are mentioned above.. but still getting same. you if have php script to download the mp3 file perfectly pls suggest
  2. Hi i tried my level best. but still facing the same issue :'( :'( :'(
  3. thank u Psycho. i can download the mp3 file through my php script. and sure that the mp3 file not playing on browser, i just keep this script only for download. its working fine. the only thing is the properties/tags of the mp3 file. i dont know why the original tags of the files are removed after download it. i want to keep the tags for source mp3 file in the downloaded file. Ex: Title , subtitle, rating,comments,album,artist, genre, length, name, type and etc... these tags are available in source mp3 file. but after download it through php the tags are removed. i dont know how to rectify it. By Karthik
  4. Hi, opz sorry for that. here after i wont do this mistake. coming to my issue. im sure that tags are part of the mp3 file not stored in outside. when i download the same file through filezilla the tags are perfectly available in that file. By Karthik
  5. hi Friends i need it urgent friends pls help me. by Karthik
  6. Hi, i done php code for download mp3 file and its working perfectly. but the issues is when i download the mp3 file the tags (artist, album,...) are not copied from sourcefile. my code is: header('Content-type: audio/mpeg'); header('Content-length: ' . filesize($songlistpath[$ival])); header('Content-Disposition: filename="'.$songlistpath[$ival].'"'); header('X-Pad: avoid browser bug'); header('Cache-Control: no-cache'); print file_get_contents($songlistpath[$ival]); i set tags (Title , subtitle, rating,comments,album,artist, genre, length, name, type) in source mp3 file. but after download that file, these tags are not available in the new mp3 file (downloaded file) . how can i solve it. thank you By Karthik
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.