
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (50)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (5379)
-
Is there a way to utilize FFMpeg in .NET MAUI for editing videos ?
9 février 2024, par D EatchelI've tried to find all the information I can about utilizing FFMpeg inside of .NET MAUI (iOS & Android) to easily edit videos on the device, but it seems like there is very little information on how to accomplish this.


FFMpeg is widely used in the video industry, and I believe a FFMpeg plugin for .NET MAUI would be hugely beneficial to the MAUI community.


It looks like you can use dependency injection to get interfaces for each OS with their own binaries, but I personally haven't been able to get this to work.


-
Combine/Concatenate 3 videos with crossfade
29 septembre 2016, par ZalonI wan’t to combine 3 videos using ffmpeg, and have a crossfade between the videos. I’ve been able to do this with 2 videos using the code below.
What I would like to do is have a end result like this :
intro
<crossfade>
video
<crossfade>
outro
</crossfade></crossfade>Can someone help me convert this code to be used with 3 videos ?
ffmpeg -i intro.mp4 -i video.mp4 -an \
-filter_complex \
" [0:v]trim=start=0:end=9,setpts=PTS-STARTPTS[firstclip];
[1:v]trim=start=1,setpts=PTS-STARTPTS[secondclip];
[0:v]trim=start=9:end=10,setpts=PTS-STARTPTS[fadeoutsrc];
[1:v]trim=start=0:end=1,setpts=PTS-STARTPTS[fadeinsrc];
[fadeinsrc]format=pix_fmts=yuva420p,
fade=t=in:st=0:d=1:alpha=1[fadein];
[fadeoutsrc]format=pix_fmts=yuva420p,
fade=t=out:st=0:d=1:alpha=1[fadeout];
[fadein]fifo[fadeinfifo];
[fadeout]fifo[fadeoutfifo];
[fadeoutfifo][fadeinfifo]overlay[crossfade];
[firstclip][crossfade][secondclip]concat=n=3[output];
[0:a][1:a] acrossfade=d=1 [audio]
" \
-map "[output]" -map "[audio]" result.mp4 -
FFmpeg transcoding stretches Vertically recorded videos
28 juin 2017, par oteammHi I am having an issue with the Transcoder (FFmpeg) .
Problem Details :
Vertically recorded videos are appearing stretched (widened) upon transcode.For videos which are recorded vertically (height is more than width), the transcoded video generated does shrink vertically. If we change the aspect ratio for such files it will ruin the other video transcodes for which the transcode is generating correctly.
Expected Behaviour :
should not shrink/stretch vertically recorded videosImpact :
we are seeing a distorted version of video, stretched horizontallyNotes :
Version of FFmpeg Software that you’re is used : - ffmpeg-2.8.6-win64
(default Settings used)Request :
Need to a way to correct this as if we change the aspect ratio for such files it will ruin the other video proxies for which the proxy is generating correctly.
Please suggest, if there is any way to AUTO select the aspect ratio of original file and generate transcode accordingly. Thanks !