
Recherche avancée
Autres articles (73)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (6478)
-
FFMPEG Select Both Mp3 & M4a Files Through PowerShell
30 avril 2020, par ilham zackyQuestion - Need to select both
*.mp3
,*.m4a
files from a directory.
I have some audio, video files, I am using ffmpeg orffprobe
to get the file duration,


It runs in a loop, audio names will be taken from an excel sheet. In my directory folder, I have both
mp3
,m4a
files.


This is my code :



$file = (Get-Item -Path ".\CPExport.xlsx")
 #$sheetName = "Sheet1"
 #Create an instance of Excel.Application and Open Excel file
 $objExcel = New-Object -ComObject Excel.Application
 $workbook = $objExcel.Workbooks.Open($file)
 $sheet = $workbook.Worksheets.Item(1)
 $objExcel.Visible=$false
 #Count max row
 $rowMax = ($sheet.UsedRange.Rows).count
 #Declare the starting positions
 $rowName,$colName = 1,1

 $id = $sheet.Cells.Item($rowName+$i,$colName).text

 $audioId = "$id.m4a"
 $videoId = "$id.mp4"
 $duration6= ffprobe -v error -show_entries format=duration -of csv=p=0 $audioId




So I am using this
$audioId
variable and passing it to my ffmpeg code. Here I can select only the m4a files,
I need to select both mp3 and m4a files.


Any Suggestion ?



I am using Powershell.



Thank you.


-
PHP Startup ffmpeg Unable to initialize module
5 mai 2014, par rami-yrmWhen start Apache I get this error..
How can I solve it ?
PHP Warning: PHP Startup: ffmpeg: Unable to initialize module
Module compiled with module API=20060613
PHP compiled with module API=20100525
These options need to match- extension=php_ffmpeg.dll : added to php.ini
- php_ffmpeg.dll copied to php/ext
- avcodex-51.dll/ avformat-51.dll/ avutil-49.dll/ pthreadGC2.dll : added to C :\Windows\SysWOW64
-
php startup error : Unable to load dynamic library
17 janvier 2016, par user2238284I have just setup a new apache server and i am getting this error, due to which php is not working
PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20100525/ffmpeg.so
What should i do to get rid of this ? would installing ffmpeg help ?