
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (3)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...) -
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 (...)
Sur d’autres sites (2104)
-
add background music for last 5 second or fade in last 5 seconds a mp4 video
30 décembre 2019, par AkhiI want to add background music for last 5 second in a mp4 video.how ? or fade in last 5 seconds. first time fade out then fade in for last 5 seconds.Please help.
I triedffmpeg -y -r 30 -i a.mp4 -i nn.mp3 -filter_complex "[0:a]volume=0,asplit[0a][0acf];
[1:a]adelay=15s|15s[1a];
[0a][1a]amix=inputs=2:duration=first:dropout_transition=0,volume=2,afifo[outro];
[0acf]atrim=0:16,afifo[0acf];
[outro][0acf]acrossfade=d=20[outro];
[0:a][outro]amix=duration=first:weights=\'2 1\'[a]" -map 0:v -c:v copy -map [a] output.mp4 -
ffmpeg zoom in for 5 seconds, then zoom out for 15 seconds to repeat the entire video
24 janvier 2020, par MonsoI have 1 video, I want to watch 15 seconds, I will zoom in to 5 seconds to repeat the whole video
Audio and video must be equalffmpeg -y -i 1.mp4 -vf "scale=2*iw:-1, crop=iw/2:ih/2:enable='lt(mod(t,27),3)*gte(t,27,3)'" output.mp4
-
ffmpeg : convert video1->images->video2 produce different number of seconds in video1,video2
25 mai 2016, par mrgloomI’m trying to convert video to images, make some image processing and then convert images back to video.
Code :
VIDEO_PATH="/home/user/myvideo.mp4"
SEPARATOR='/'
BITRATE="4600k"
VIDEO_BASE_DIR=`dirname $VIDEO_PATH`
FRAMES_DIR=$VIDEO_BASE_DIR$SEPARATOR"Frames"
mkdir $FRAMES_DIR
#check info of original video
./ffprobe -show_streams $VIDEO_PATH
#video to images
./ffmpeg -i $VIDEO_PATH $FRAMES_DIR$SEPARATOR"image%d.png"
#images to video
./ffmpeg -y -pattern_type glob -i $FRAMES_DIR$SEPARATOR'*.png' -r 30 -vcodec mpeg4 -b:v $BITRATE $VIDEO_BASE_DIR$SEPARATOR$BITRATE.mp4
#check info of produced video
./ffprobe -show_streams $VIDEO_BASE_DIR$SEPARATOR$BITRATE.mp4The problem is that length in second of original and produced videos doesn’t match.
In
ffprobe
output I can see thatr_frame_rate=30/1
for both videos.
Andnb_frames
don’t matchnb_frames=339
for first andnb_frames=407
for second video.UPDATE :
Seems this command with
-framerate
solved the problem :./ffmpeg -framerate 30 -y -start_number 1 -i $FRAMES_DIR$SEPARATOR"image%d.png" -r 30 -vcodec h264 -b:v $BITRATE $VIDEO_BASE_DIR$SEPARATOR$BITRATE.mp4