There was a need to convert seconds to milliseconds. Script:
#!/bin/bash a=$(ffprobe -i c848a39afc54e04cc64ddd955686654b9b1c6f31 -show_entries format=duration -v quiet -of csv="p=0"); b=1000; result=$(($a*$b)); echo $result
Conclusion
./sectomilisec: line 4: 23.760000 * 1000: syntax error: invalid arithmetic operator (error token is ".760000 * 1000")
How to multiply the output of the operation by the number?