
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (95)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (7300)
-
Nodejs fluent-ffmpeg multiple inputs and multiple filter
30 octobre 2018, par emrahI want to apply 2 different filters to 2 different images and convert them to mp4 files. I can convert 1 image to mp4 file, but I failed for 2 images.
ffmpeg()
.input(__dirname + '/images/1.jpg')
.complexFilter(
[
{
"inputs": "0",
"filter": "zoompan",
"options": {
"z": "zoom+0.03",
"d": "150",
"x": "iw/2-(iw/zoom/2)",
"y": "ih/2-(ih/zoom/2)",
"s":"1920x1080"
}
}
])
.input(__dirname + '/images/2.jpg')
.complexFilter(
[
{
"inputs": "1",
"filter": "zoompan",
"options": {
"z": "zoom+0.03",
"d": "150",
"x": "iw/2-(iw/zoom/2)",
"y": "ih/2-(ih/zoom/2)",
"s":"1920x1080"
}
}
])
.format('mp4')
.videoBitrate('1024k')
.videoCodec('mpeg4')
.output(__dirname + '/images/asd.mp4')
.on('end', function() {
console.log('Finished processing');
})
.run(); -
FFmpeg Video and audio don't match [closed]
31 janvier 2020, par MonsoVideo and audio don’t match, you can change all code become a short code, I want to adjust the "if (lte (mod (on, 360), 180)" into seconds. Please help me, thanks.
ffmpeg -y -i 3.mp4 -vf "zoompan=z='if(lte(mod(on,360),180),zoom+2,zoom-2)':x='iw/2-(iw/zoom)/2':y='ih/2-(ih/zoom)/2':d=0,setpts=0.835*PTS" a/1.mp4
ffmpeg -y -i a/1.mp4 -an a/2.mp4
ffmpeg -y -i 3.mp4 -q:a 0 -map a a/am.mp3
ffmpeg -y -i a/2.mp4 -i a/am.mp3 -c:v copy -c:a aac -strict experimental output.mp4 -
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.