
Recherche avancée
Autres articles (40)
-
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. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (4080)
-
How to convert fisheye-video into an equirectangular video to use with 360°-video viewers ?
11 juin 2017, par P. DeeActioncams like GoPro put a wider fov into a standard 1920 x 1080 or higher resolution at the expense of distortion.
How do I use ffmpeg to convert this fov-encoded format into an equirectangular video to use with 360°-video viewers ?
-
(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.


-
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