
Recherche avancée
Autres articles (79)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (8721)
-
FFMPEG+video+video.js dont show up the video
18 avril 2013, par user1843970I have a video content type where I want to show the video to the user. I downloaded video module and video.js for this purpose. I have successfully installed ffmpeg transcoder in apache serv
Now I go to admin/config/media/video. Withing players tab I select HTML5 player for mp4 video and video.js to run HTML5 video like below :-
Now I go to Video Content Type and add Video field with Video Upload as its type and save it.The video is successfully converted but after clicking on play button nothing happens.
Need your help in this.
-
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.