
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (17)
-
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone. -
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 à (...)
Sur d’autres sites (1044)
-
Store image specific metadata in video
5 mai 2021, par VocoJaxI'd like to store XMP data in my PNG images and then compress my images using a lossless compression codec in a video for long-term storage.


Is this possible ? Is per-image metadata discarded when compressing into a video ?


For context, I need a pythonic solution utilizing FFMPEG to do the video compression. I'm aware that OPENCV discards VIDEO metadata. Further, I care not for VIDEO metadata, only per image metadata. Additionally, the type of metadata I'm storing is in reference to the timestamp of the frame, the camera it was taken on, and maybe even some information regarding on-prem AI detecting like bounding box of an object in frame or something like that.


My current approach is just to use OPENCV to get the frames and then record the time into a fat array. Once my video file gets to a specific size or frame count, I'll just prepend the json array of timestamps to the video file along with a 32-bit integer regarding how long the array is. This solution will definitely work, but, it's a hassle to record the timestamps in memory, plus write custom scripts to load my video again (parsing the timestamps off the front of it beforehand).


Who's got the magic solution ? Could I use the approach I'm currently using except attach the frame timestamps to the VIDEO metadata instead ?


-
Revision fec40f9269 : vp9 : fix m/t loop filter invalid free store the number of allocated rows in VP9
29 août 2014, par James ZernChanged Paths :
Modify /test/invalid_file_test.cc
Modify /test/test-data.sha1
Modify /test/test.mk
Modify /vp9/decoder/vp9_decoder.c
Modify /vp9/decoder/vp9_dthread.c
Modify /vp9/decoder/vp9_dthread.h
vp9 : fix m/t loop filter invalid freestore the number of allocated rows in VP9LfSync, the calculated values
can not be relied on when dealing with corrupt material.Change-Id : I13b8bcec9738c299a71df726772ab7ac05511e5b
-
why i dont able to store hls file to the path which is mounted to aws s3 while converting using ffmpeg ?
16 juin 2024, par Arjitwhy i dont able to store hls file to the path which is mounted to aws s3 while converting a rtmp stream using ffmpeg ? It's work when the path is non mounted.


Actually I m using nginx rtmp to run a rtmp server & I want it in the foem of hls thats why the rtmp block look like this :


rtmp{
 server{
 listen 1935;
 chunk_size 4096;
 # allow publish 127.0.0.1;
 allow publish all;
 # deny publish all;

 application live{
 live on;
 record off;

 hls on;
 hls_path /tmp/hls;
 hls_fragment 10s;
 hls_playlist_length 5m;
 }
 }
}



And I mounted that hls path (in this case
/tmp/hls
)to a aws s3 bucket using s3fs.and its not storing only when the path mounted.what can be a good solution of this ?

Why this happen & what can be a good solution of this ?