
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (92)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7940)
-
Vertical video play does not sync with multiple stacked video
5 novembre 2018, par SabhaI dont know if I have wrote the subject well and if that can be understood. Nevertheless, here is an explanation
I have 7 videos of different dimensions where the width is same (1080). I wish to place them one below the other to get a full hd vertical video (1080x1920). I tried the
-filter_complex vstack
filter in ffmpeg and got all the videos aligned one below the other and I am getting a perfect 1080x1920 full hd vertical video but they dont sync with each other. Once the videos are in sync, I need to put an audio too which should also sync with the in-sync video that will be made.There is so much of complexity. Please advice how do I make them sync. Is there any software that can allow me to put 7 videos one below the other in a timeline ? (if not 7, atleast 3-4 videos). Please advice where and how to start.
Is there any option in Adobe Premier or any other software ?
Thanks
EDIT : I am doing a very long procedure to combine all 7 videos vertically
first i use
ffmpeg -i video1.mp4 -i video2.mp4 -preset veryslow -filter_complex vstack video12.mp4
and then
ffmpeg -i video12.mp4 -i video3.mp4 -preset veryslow -filter_complex vstack video123.mp4
so on and so forth
Is there a better way to do it all in one command ?
-
jffmpeg.jar how to split a video file to many chunks- Java, Groovy, Grails, Video
9 janvier 2014, par user1245222I was googling whole day to find a proper documentation to split a video using jffmpeg.jar. But unfortunately, I couldn't find anything.
Using java -> groovy, I was able to use native command to split the same. Below is the command.
def command = """ffmpeg -i /opt/eboxdata/uploads/719/Resource/Alfred Hitchcock - Making of Psycho.mp4 -vcodec copy -acodec copy -ss 00:00:00 -t 00:05:00 /opt/eboxdata/uploads/719/Resource/output2.avi"""// Create the String
def proc = command.execute() // Call *execute* on the string
proc.waitFor()Any one could help me to split a video file without using native command. But using jffmpeg.jar
-
Stitching 6 video files into one 360 video in Ubuntu Linux
1er mai 2020, par Essam GoudaI used 2 raspberry PIs to record 2 different videos in sync using a OSC server so the videos are perfectly in sync and I send them to a Linux server so I can stitch these videos and produce one 360 video file so far I have tried doing that on 2 videos just for testing purposes using two methods :
1- only ffmpeg :
By simply concatinating two videos into one but this doesn't produce a 360 video as seen here



2- using ffmpeg and hugin following this tutorial (https://medium.com/@xorgol/stitching-multi-camera-360-video-an-open-source-workflow-bb8b1e72925) :
The problem here is I needed to do this method on each video file I have and then concatenate both videos to produce this result



The original video can be seen here its captured using the RPI camera module V2 using a lens that provide a resolution of 3280x2464.




I don't mind a bit of overlapping or anything I just need to produce a 360 video from 2 videos using two vamera with 180 degrees FOV and be able to view them using a 360 video player so your help is appreciated.