YOUREWINNER.COM
 
   

Music on android
 
ZIGS_ARE_WINNER
#1 29-07-2016, 21:49:05 PM
- Last Edit: 30-07-2016, 09:05:11 AM
  • Это вроде сосать быть Дарта Вейдера
  • *****
    *****
    *
  • Posts: 13190
  • Rigcoins: 30212916.90
  • Send Money to ZIGS_ARE_WINNER
    Windows 7 Thumb Up
  • BrazilianThe NapsterPC Master Race+
  • "I hate people"
Ok let's say I have a music album in .mp3 format, the whole album in a single .mp3 file. Is there a player for android that let's me skip directly to a specific time stamp? Like, have a bunch of time stamps "links" that I can press and it skips directly to it? Alternatively, some way to break up the single file into multiple files (songs) would also be acceptable


DZ
#2 29-07-2016, 23:51:03 PM
  • grrrraaaaaaagggh
  • Global Moderator
  • *****
    *****
  • Posts: 7622
  • Rigcoins: 71.40
  • Send Money to DZ
    Windows 10 Thumb Up
  • Active memberszaps dicksNot Active Enough+
  • "i am a trailer park hooker"
audacity


DZ987
#3 30-07-2016, 02:51:19 AM
- Last Edit: 30-07-2016, 03:07:49 AM
  • Guest
hi ZIGS Astro Player's bookmark feature seems to do what you want.

However, I would just unleash the power of FOSS and use ffmpeg for this like I do for everything else:
Code: [Select]
#!/bin/bash
set -e

# Start time/End time/Filename
SONGS=( 00:00:00 00:00:30 "dead poo poo.mp3"
        00:00:30 00:01:15 "killall poo poo.mp3" )

# Input file
INFILE="bigazzfile.mp3"

for ((i=0;i<${#SONGS[@]};i+=3)); do
  START="${SONGS[i]}"
  END="${SONGS[i+1]}"
  OUTFILE="${SONGS[i+2]}"
  ffmpeg -i "$INFILE" -c:a copy -ss "$START" -to "$END" "$OUTFILE"
done


0 Members and 1 Guest are viewing this topic.