
Recherche avancée
Autres articles (82)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (4622)
-
Using FFMPEG to join two MTS files together
16 septembre 2023, par ReadoI have two MTS video files, each one 2 minutes long. I need to be able to join the files together and convert the format to MPEG4. I have a suitable command line for converting MTS to MP4 but don't know how to join the files together in the first place.



Some articles on the web suggest using the CAT command, like :



cat video1.mts video2.mts > whole_video.mts




However this doesn't work and according to FFMPEG, "whole_video.mts" is only 2 minutes long, not 4 minutes.



Does anyone know how to join the files together ? Is FFMPEG the best program to use to do this ? Thanks in advance.


-
Using FFMPEG to join two MTS files together
1er juillet 2016, par ReadoI have two MTS video files, each one 2 minutes long. I need to be able to join the files together and convert the format to MPEG4. I have a suitable command line for converting MTS to MP4 but don’t know how to join the files together in the first place.
Some articles on the web suggest using the CAT command, like :
cat video1.mts video2.mts > whole_video.mts
However this doesn’t work and according to FFMPEG, "whole_video.mts" is only 2 minutes long, not 4 minutes.
Does anyone know how to join the files together ? Is FFMPEG the best program to use to do this ? Thanks in advance.
-
Ffmpeg video freeze for longer video
10 mars 2016, par VishnuI have a video of 30 seconds , I am making it 1 hour video using below code
echo shell_exec('/usr/local/bin/ffmpeg -y -i universal.mp4 -f lavfi -i "color=black:s=1280x720:r=24:d=3600" -filter_complex "[0][1]concat=n=2:v=1:a=0[v]" -map [v] -c:v libx264 -map 0:1 -c:a libfdk_aac -b:a 256k output.mp4 2>&1');
So The output.mp4 created using above code is 1 hour long and it is getting freezed by vlc ,windows mediaplayer when I seek to certain minutes.But when I set duration d=300 , output video is perfect. Why does long video gets freezed from above output.