
Recherche avancée
Autres articles (58)
-
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 (...) -
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 (...) -
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.
Sur d’autres sites (6569)
-
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
-
Black overlay appears when merging a transparent video to another video
13 juin 2012, par RakeshSThis is what I have done so far :
Command to create a transparent PNG image :
convert -size 640x480 -background transparent -fill blue \
-gravity South label:ROCK image1-0.pngCommand to create a transparent video :
ffmpeg -loop 1 -f image2 -i image1-0.png -r 20 -vframes 100 \
-vcodec png -pix_fmt bgra mov-1.mov(as per this post) - I expect this video to be a transparent video.
Command to overlay a video with another :
ffmpeg -i final-video.mov -sameq -ar 44100 \
-vf "movie=mov-1.mov [logo];[in][logo] overlay=0:0 [out]" \
-strict experimental final-video.movAbove commands works perfect and I have not faced any problem, but I don't get what I expect which is kinda watermarking effect, I want mov-1.mov to be transparent with final-video.mov.
Questions :
- Is there any way to verify if the generated video is transparent ? other than merging ?
- Not sure why the above mov-1.mov is not transparent when it is merged with final-video.mov, any info to solve this problem would be great.
Please help.
-
Is there a way to extract every nth frame from an online video without downloading the entire video ?
13 avril 2018, par ArifI’m looking for a website or app that lets you to download individual frames from a video as jpg without downloading the full thing. If there is no such website or app, is it possible via ffmpeg ?