This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# change metadata of audio file | |
ffmpeg -i input.mp3 -acodec copy -vn -metadata artist=Ali output.mp3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
setlocale(LC_CTYPE, "en_US.UTF-8"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* ArrayHelper | |
* | |
* @author Ali Irani <[email protected]> | |
*/ | |
class ArrayHelper | |
{ | |
/** | |
* Move an array item from an index to another index position |