
Recherche avancée
Autres articles (69)
-
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 à (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (6324)
-
FFmpeg - Record video feed from camera and store each frame timestamp
21 mars 2023, par BuzzI've searched far and wide here on SO and I've found lots of similar question, but most of them regarding either single snapshot recording, offline video processing or drawing timstamp on a frame.


I'm quite new to ffmpeg, so sorry if the question is very trivial.


I'd need to record a video feed from a camera and to store (into the same video file, if any, or in a separate textual file) each frame timestamp (absolute, not relative)


I've noticed that many have used
-frame_pts
, but, though pertinent, I'm not sure how to integrate it for the issue above.

-
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 ?


-
Convert s3 video files resolution and store it back to s3
5 avril 2019, par Pritam RoyI want to convert s3 bucket video file resolutions to other resolutions and store it back to s3.
I know we can use ffmpeg locally to change the resolution.
Can we use ffmpeg to convert s3 files and store it back using Django ?I am puzzled as from where to start and what should be the process.
Whether I should have the video file from s3 bucket in buffer and then convert it using ffmpeg and then upload it back to s3.
Or is there anyway to do it directly without having to keep it in buffer.