
Recherche avancée
Autres articles (47)
-
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 (...) -
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. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (5174)
-
avformat/hls : Add ec3 to allowed_extensions
6 avril, par Michael Niedermayer -
FFMPEG how do i add 1 image to 1 video
15 avril 2020, par dasok I found a code online from 1 of the StackOverflow page tested it and it adds 10 seconds black screen before the video starts.

Summary

i have 55.mp4 and logo.png i want to replace black screen with png logo


ffmpeg -i 55.mp4 -filter_complex "[0:v]tpad=start_duration=10:color=black[v];[0:a]adelay=10000|10000[a]" -map "[v]" -map "[a]" -y out2222.mp4




I have logo.png in the same path how do I use that instead of black screen.

I do not wish to use overlays. I want it as it is, just replace black-screen with my png

-
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