
Recherche avancée
Autres articles (59)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7704)
-
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
-
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.
-
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