
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (97)
-
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (11083)
-
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 -
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 to cut beginning and fade in audio
31 juillet 2024, par cannyboyI've got a bunch of spoken word mp3 files, which all have the same intro talking and music, and then the real content begins. So it goes roughly like this :


00:00 Standard intro spoken word
00:20 Standard intro music
00:35 The content



The timings are not always the same (can vary by 5 secs). So I'd to cut the first 25 seconds and then fade in the next five seconds. And then output the file in the same mp3 format. Is this possible with ffmpeg ?