
Recherche avancée
Autres articles (78)
-
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 à (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 (...)
Sur d’autres sites (6736)
-
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.


-
How to choose the thumbnail of the first video instead of the second video when you concatenate them with FFMPEG ?
4 octobre 2018, par Lanh Dien Xa TamI’ve been using FFMPEG to bulk add outro to my videos. This is the code I use :
for %%f in (*.mp4) do (
echo.>%%f.txt
echo file '%%f' >> %%f.txt
echo file 'outro/outro.mp4' >> %%f.txt
)
for %%f in (*.txt) do (
ffmpeg -f concat -i %%f -c copy concatenated/%%f.mp4
)The problem is the thumbnail of the output videos is always is the second video’s (the outro) but not the first. Does anybody here know how to pick the first video thumbnail to be the output’s thumbnail instead of the second’s ?
-
Ffmpeg hls live stream video freezes for a second but audio continues and video catches up
13 décembre 2022, par Bluchip StudioI am using the latest version of ffmpeg to create a hls live stream todo this i am using the following command


/root/ffmpeg -y -loglevel debug -threads 0 -probesize 512000 -analyzeduration 512000 -user_agent "Chrome/98.0.4758.102" -i https://example.com/input.m3u8 -c:v copy -c:a copy -async 1 -tune zerolatency -fflags +genpts -hls_init_time 2.002 -hls_time 2.002 -hls_list_size 20 -hls_flags delete_segments+append_list -hls_segment_type mpegts -hls_segment_filename "/var/www/html/hls/segment_%05d.ts" -f hls "/var/www/html/hls/playlist.m3u8"



I initially tried using fmp4 but i noticed the video would lag behind major and the audio would end up well ahead so i switched to mpegts


i managed to fix the audio issue here using -async 1 on fmp4 this made no diffrence now i have a small issue where my stream will open and play but the video will freez every few seconds while the audio continues and then the video will jump to catch back up and continue then it will do it again and again and again


dose anyone know what may be causing this issue i tried swapping to x264 in stead of copying the video stream and using force key frames to set a key frame every 2 seconds but this resulted in well the same issue if not a little worse


i kind of expected the stream to play perfect with the settings i have and with the logs set to debug i cant see any errors at all