
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (111)
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (11965)
-
Php and Mysql current video time duration using FFMPEG
10 novembre 2014, par innovationI have one question about video time calculator.
I am using this FFMPEG
shell_exec("ffmpeg -i ../videos/$video_name.flv -f flv -s 320x240 ../videos/$video_name.mp4");
shell_exec("ffmpeg -i ../video_images/$video_name.mp4 -vcodec png -ss 00:00:05 -s 360x288 -vframes 1 -an -f rawvideo ../video_images/$video_name.png");I want to add here to post total duration of the video.
For example : I upload a video this video time 4:10 (4 minutes 10 seconds). I want to post it this time from table row.
How can i do this anyone can tell me ? -
doc/APIchanges : fix weird reindent
2 février 2014, par Stefano Sabatini -
Given 2 input videos of different lengths at 60 FPS with multiple common sections in between, what is the best way to sync them at the common section ?
27 janvier 2024, par PirateApp

- 

- In my actual case, there are 4 videos (basically gaming videos recorded from 4 different machines)
- Each video may start or end at different duration (manually controlled by people starting and stopping recording and therefore their lengths vary slightly)
- Each video has one or more common sections (basically a cutscene playing at the same time)
- The distance between the common sections is the same in every video
- How do I sync the videos at the common section ?
- Basically I want to create a split screen video such that the common part plays at the same time on all the sub parts of the video
- Keep in mind that the common sections wont be EXACTLY equal (because of graphics differences between machines but highly similar like dx9 vs dx11 or gamma)
What have I tried ?
- Naive approach
- Start video 1 at 0, start video 2 at 0.017, render the whole thing and check if it is in sync
- Start video 1 at 0, start video 2 at 0.033, render the whole thing and check if it is in sync
- Basically loop through the length of the video at each frame interval, render the full video and check if we get a synced version
























This sounds like a terrible idea honestly


for (t1 in length of video a) {
 for (t2 in length of video b) {
 render a video with a and b starting at t1, t2 respectively
 increment t2 by 0.017 for b
 }
 increment t1 by 0.017 for a
 }



Final output with 4 videos should look like this all synced at common sections



Any better ideas ?