
Recherche avancée
Autres articles (39)
-
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 (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (4873)
-
how to combine several video random any one to create 1 new video ? using ffmpeg ?
22 décembre 2016, par Sky Moonhow to combine several video random any one to create 1 new video ?
for example, I have 10 videos : 01.mp4 ; 02.mp4 ... 10.mp4
I want to combine random 5 of them to create 1 video
example :
(01.mp4+ 03.mp4+ 04.mp4+ 06.mp4 + 08.mp4) = 1 new video(02.mp4+ 04.mp4+ 05.mp4+ 06.mp4 + 09.mp4) = 1 new video
Similar : random combination of 50 videos of 1000 videos to create 1 new video ?
-
Ffmpeg video freeze for longer video
10 mars 2016, par VishnuI have a video of 30 seconds , I am making it 1 hour video using below code
echo shell_exec('/usr/local/bin/ffmpeg -y -i universal.mp4 -f lavfi -i "color=black:s=1280x720:r=24:d=3600" -filter_complex "[0][1]concat=n=2:v=1:a=0[v]" -map [v] -c:v libx264 -map 0:1 -c:a libfdk_aac -b:a 256k output.mp4 2>&1');
So The output.mp4 created using above code is 1 hour long and it is getting freezed by vlc ,windows mediaplayer when I seek to certain minutes.But when I set duration d=300 , output video is perfect. Why does long video gets freezed from above output.
-
Flutter get video frames using video player or ffmpeg
7 mars 2021, par lulliezyI have a flutter app that processes videos, now, I want to display like a video timeline at the bottom of the video but it should be comprised of the video frames of the video at various points, my googling has been fruitless so far and I was hoping to achieve this using flutter video_player and/or flutter_ffmpeg (I use these packages in my app). I have tried to look this online but I want to avoid using another package just for this, how do i achieve this using either or both the packages ?


Thanks in advance