
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (106)
-
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (9943)
-
How to concatenate bunch of MP4 files using FFmpeg ?
14 octobre 2020, par lapestandI'm trying to concatenate list of mp4 files using FFmpeg. All files are the same length. Difference from ordinary concatenation is I want to split first and last videos and get 2nd and 1st part of them respectively. To be more specific :


Inputs as example :


video_list = [
 "video1.mp4", "video2.mp4", ..., "video150.mp4", "video151.mp4"]

first_video_sec = 345
last_video_sec = 23



Expected output :


(video_list[0] from 345th second + Concatenation of videos in between + videos[len(videos)-1] to 23th second)



as a single mp4 file.


I'm splitting first & last videos and saving their 2nd & 1st parts respectively as an mp4 files then concatenate all videos using concat demuxer. Is there a more efficient way to do this ?


-
Recording ip camera stream writing video file [closed]
10 décembre 2020, par MarcWe are implementing a camera surveillance system project using python with openCV/ffmpeg and Cuda based on client-server architecture, this system should hold up to 40-60 IP cameras for live, record and playback features.


The problem is that their is delay in live view between our program and the web page of the camera and problem in writing frames into video files(recording).


Does the problem due to the used language or a hardware issue, and does python represents the efficient language for this type of projects ?


-
Upgrading Transcooding system, Ideal database to store chunk metadata [closed]
11 mai 2022, par VitooI try to update my transcoding system, to make it more efficient and failure resistant. Right now service transcode the whole video at once generating multiply resolution it consumes a lot of resources and when transcoding crash it has to start from beginning.


I think the better method is to chop a video into small 5-10 sec pieces and encode it separately and at the end merge it, but the main problem is to delegate pieces to different encoder workers. I need to store chunks in some database and every worker should lock that it is already working on it and if successful change state to true.


What do you think about this ?
What kind of database should I use ?
Do you have some additional ideas or propositions ?