
Recherche avancée
Autres articles (38)
-
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 (5650)
-
Slowing or speeding up video or altering frames in video to set video length
18 novembre 2022, par user19019404Using ffmpeg is there a way to change the length of the video without losing frames ?
That is, I want all my videos to be 5 minutes long. Due to CPU processing and other issues (external videos received) some videos are between 2 and 4 minutes minutes, some videos are between 6 and 8 minutes. I don't seem to have lost any frames and they are all intact, just some videos play a bit slower than real seconds and some play faster.


I want to change the speed of the video so that they all end up being exactly 5 minutes. So if I go 2 minutes 30 into the video we are always at the halfway point.


Is this something that can be achieved with ffmpeg ?


Thanks


-
(java.net.ProtocolException) Unable to stream video in video view. (Video which was trimmed using FFmpeg
16 décembre 2020, par SurajHello I am using the below command to trim video using FFmpeg (trim without re-encoding)


String[] command = new String[]{"-y", "-i", original_path, "-ss", ""+ startMs / 1000, "-t" , "" +((endMs - startMs) / 1000), "-c", "copy", dest.getPath()};



Now this trimmed video is present on my server but i am not able to stream it in video view. Whereas I can play the other videos which was not trimmed using FFmpeg.


Below is the code load video in videoview


VideoView videov = findViewById(R.id.videov);
Uri uri = Uri.parse("http://x.x.xxxx.xxxx:8000/xxxxxApp/media/xxxx/1608121174332.mp4");
videov.setVideoURI(uri);
videov.start();



Also I can play the same video in webview control.


-
How to overlay one video on another and then if one video finishes then fullscreen the other video [FFMPEG]
2 février 2020, par siddhesh amraleffmpeg -i s2.mp4 -vf "movie=s1small.mp4 [inner];[in][inner] overlay=100:100 [out]" merge.mp4
s1 dimension : 420x320
s2 dimension : 1280x720
I want the other video to fullscreen if one video ends.