
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (112)
-
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 (...) -
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 à (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (11450)
-
Overlay different images with different time span to a video
26 juillet 2015, par azri.devI need to overlay a video with ’different images’ at ’different time span’.
Usingpython
andffmpeg
I developed a code which do exactlly what I need but it is time consuming and not efficient in processing.The code is just loop over all the images (with their time span) and output new video file which will be an input for the next loop.
Here is my code :
def insert_photos_to_video(photos_to_add_array, input_video):
count = 0
position_x = 25
position_y = 25
image_position = str(position_x) +':'+ str(position_y)
for item in photos_to_add_array:
image_path, time = item
start_time, end_time = time
output_video_name = str(count) + '.mp4'
output_video_file = os.path.join(os.getcwd(), output_video_name)
if count == 0:
input_video_path_name = input_video
command = 'ffmpeg -i '+ str(input_video_path_name) +' -i '+ image_path +' -filter_complex "[0:v][1:v] overlay='+ image_position +':enable=\'between(t,'+ str(start_time) +','+ str(end_time) +')\'" -pix_fmt yuv420p -c:a copy '+ output_video_file
subprocess.call(command, shell=True)
input_video_path_name = output_video_file
count = count + 1
return output_video_file- Is there any way to improve the code by combining all input images (along with their time span) in one
ffmpeg
command ? - Is there any other good way to do the above task with python using other libraries (e.g. OpenCV).
Thanks in advance.
- Is there any way to improve the code by combining all input images (along with their time span) in one
-
mp4 video plays from beginning while seeking to another time [on hold]
13 août 2013, par user2649860i am using lighttpd and h264 with jwplayer. I am trying to stream the MP4 video.
My problem is that the MP4 video downloads whole file before playing and i have another problem i.e. when i seek to another time/point the video plays from beginning and it plays after the end time also.
i have already tried the ffmpeg tools to create the h264 video and qt-faststart.exe tool to fix the video index problem of the video. But it does not work.
Any solution ?? THanks in advanced
-
How to cut using ffmpeg using start and end time not duration ?
16 octobre 2020, par Joan VengeI have seen many links that shows specifying the start time and duration but I want to specify the start and end time. From example from 5 min mark to 12 min mark. How to do this using ffmpeg ?