
Recherche avancée
Autres articles (61)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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. -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (6385)
-
FFMPEG - create video in with images and video file
15 novembre 2018, par Pramod GehlotI am creating video using ffmpeg
I have some images and video so i want to create video with images and also video
in node jsmy code
ffmpeg() .addInput(__dirname + '/test/fixtures/step_%1d.png')
// .outputOptions(['[0:v]scale=200x200'])
.complexFilter([
// 'scale=640:480[rescaled]',
{
filter: 'zoompan',
options: {
x: '200',
y: 'ih/2-(ih/zoom/2)',
z: 'min(zoom+0.0005,1.5)',
d: '125',
s: "200x200",
},
// "inputs":'[0:v]scale=200x200'
},
])
.format('mp4')
.videoBitrate('1024k')
.videoCodec('mpeg4')
.output(finalVideoPath)
.on("error", function (er) {
console.log("error occured: " + er.message);
})
.on('end', function () {
console.log('Finished processing');
}).run();I want to add video , how we can do in this code, Please help me
-
WebM Video Codec in Skype 5.0 Group Video
9 novembre 2010, par noreply@blogger.com (John Luther)Our friends at Skype recently released Skype 5.0 for Windows and Mac, which features a beta group video feature using VP8, the video codec in WebM. In the first half of 2010, approximately 40% of Skype-to-Skype calls were video calls and we’re excited that in the future many of those calls will be made using VP8.
To check out the new group video feature, simply download the Skype Software.
Note : For group video to work, everyone on the call needs the new Skype for Windows or Mac, a webcam and a broadband connection.
For more info about Skype group video, visit the Skype website.
-
HTML5 video source video type codecs parameter with ffmpeg [duplicate]
25 juin 2016, par Matt JoinerThis question already has an answer here :
-
html5 video tag codecs attribute
2 answers
I’m programmatically adding source tags to a HTML5 video tag. I’m using ffmpeg to generate the content for the source tags. How can I get the appropriate codec value for the source type attribute ?
<video>
<source src="{{.StreamURL}}" type="video/mp4; codecs=?">
<video>
</video></source></video> -
html5 video tag codecs attribute