View Single Post
Posts: 20 | Thanked: 40 times | Joined on Apr 2015
#8
Thanks, your command line works, but on my jolla1 some videos pause and play too often... so i made a simple script file:

Code:
#!/bin/bash                                                                                                                   
BINPATH="/home/nemo"                                                                                                          
FILE="$1"                                                                                                                     
$BINPATH/ffmpeg -i $FILE -f wav /tmp/wav.wav                                                                                  
$BINPATH/ffplay -fs $FILE & paplay /tmp/wav.wav                                                                               
rm /tmp/wav.wav
don't run it with very long videos! otherwise you have to wait very long before it plays!

this is a temporary solution: i hope ffplay will be fixed soon
 

The Following 2 Users Say Thank You to paolomi For This Useful Post: