
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (37)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (6332)
-
Options for cross-platform video & audio playback with speed control [on hold]
11 janvier 2016, par Jon CookI’m looking for a component that will do the following :
- (Must) Playback most common video formats (e.g. mp4, wmv, AVCHD, F4V, swf, MKV, DIVX, Mov, Avi, MPEG-1, MPEG-2, flv, VOB, asf)
- (Should) Stream video
- (Must) Playback most common audio formats (e.g .mp3, wav, .m4a, .mid)
- (Should) Stream audio
- (Must) Slow-down/speed up video&audio
- (Must) Adjust pitch of video&audio
- (Should) Zoom in on video
It needs to work on the following platforms :
- (Must) Mac
- (Must) iPad
- (Should) iPhone
- (Should) Android
- (Should) Windows
I’m prepared to work with any language, tech stack, whatever, as long as it meets those requirements.
Is there any such thing out there ?
I’ve started looking around (have checked out http://ffmpeg.org/ and www.vitamio.org/) but I’m a bit overwhelmed - too many variables - hoping someone out there might have some hints ?
-
how to concat two videos using ffmpeg with audio added and also i need fede-effcts not cross fade
1er octobre 2016, par sathyai used following two ffmpeg commands two achieve my task .
ffmpeg -i input.mp4 -vf "fade=in:0:40,fade=out:92:40" file1.mp4 //for fade effects
//for concat result of above videos
ffmpeg -i file1.mp4 -i file1.mp4 -filter_complex ’[0:0] [0:1] [1:0] [1:1] concat=n=2:v=1:a=1 [v] [a]’ -map ’[v]’ -map ’[a]’ output-file2.mp4
now i need single command for both operations with audio supported.
i don’t know how to do it in single command . if anyone know .please help me to resolve this.i tried couple of ffmpeg commands but i faced some audio issues .
thanks in advance.
-
How to assemble three videos with cross fade using FFMPEG
17 novembre 2017, par Colin A BitterfieldI am trying to assemble 3 videos (static title) (main feature) (static trailer). The title and trailer are encoded text with the main feature being h264 encoded (at 6Mbs). The title and trailer have nul audio encoded. The specific goal is a crossfade between the three segments. I have concat working fine, but adding crossfade is causing me issues.
How does
setpts=PTS-STARTPTS+(4/TB)[v2];
work ?This code puts it together, but the bit rate and errors are wrong.
ffmpeg -y -i title.mp4 -i vid.mp4 -i trailer.mp4 -f lavfi -i color=black:s=1920x1080 -filter_complex \
"[0:v]format=pix_fmts=yuva420p,fade=t=out:st=04:d=2:alpha=1,setpts=PTS-STARTPTS[v0]; \
[1:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=2:alpha=1,fade=t=out:st=6:d=1:alpha=1,setpts=PTS-STARTPTS+10/TB[v1]; \
[2:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=2:alpha=1,fade=t=out:st=2:d=1:alpha=1,setpts=PTS-STARTPTS+20/TB[v2]; \
[3:v]trim=duration=30[over]; \
[over][v0]overlay[over1]; \
[over1][v1]overlay[over2]; \
[over2][v2]overlay=format=yuv420[outv]" \
-vcodec h264_videotoolbox -b:v 6000k -maxrate 6000k -bufsize 6000000 -map [outv] merge.mp4