
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (80)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (4111)
-
node \ ffmpeg convert stereo file to two mono channels files
24 février 2017, par user1025852I’m using fluent-ffmpeg and assuming I get stereo files as input - how exactly I output two different mono files (one per channel) ? I’m not sure how to "translate the ffmpeg documentation to the node.js client of ffmpeg..
I tried
.audioChannels(2)
var convertStereoFileToMonos = (filePath) => {
return new Promise(function(resolve, reject) {
console.log("about to convert " + filePath );
var outputLeft = `${filePath}-left.ogg`;
var outputRight = `${filePath}-right.ogg`;
var command = ffmpeg(filePath)
.format('opus')
.audioBitrate('30k')
.audioChannels(2)
.on('error', function(err) {
reject(err);
})
.on('end', ()=> {
resolve({
outputLeft: outputLeft,
outputRight: outputRight
});
})
}); -
Creating video with multiple audios and one still image with ffmpeg [on hold]
4 mai 2014, par user3601509Hi i want to create many videos with multiples audios and one single picture.
For example i have song1.mp3, song2.mp3, song3.mp3 and one single picture. What i need to do is to create many videos and name that videos as : song1.mp4, song2.mp4, song3.mp4
I want to create many videos at once. Because i have a huge amount of songs and i need a lot of videos with that songs, sorry for my english.
I have this script for only one picture and one mp3, but i need to create bulk videos can you help me ? ffmpeg -loop 1 -shortest -r 0.1 -i online.mp3 -i imagen.png -ab 128k output.avi
Many thanks
-
ffmpeg - scale not working on all my cases
24 avril 2017, par Thanh DaoI’m using
ffmpeg
to scale and change speed of my videos.And below script was not worked :
ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=0.666*PTS[i]; [i]scale=640:640[j]; [0:a]atempo=1.5[p]" -map "[j]" -map "[p]" output.mp4 2>&1
More simple script I testes also not working
ffmpeg -i input.mp4 -filter_complex "scale=640:640" output.mp4 2>&1
Original video have resolution
1280x720
, and I want to resize to640x640
, with padding320
left and right.What are my wrongs in script ?
Sorry for my bad English !