
Recherche avancée
Autres articles (38)
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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 (...)
Sur d’autres sites (4837)
-
How to provide clipping information to ffmpeg to help video encoding ?
24 septembre 2014, par krissI have written a software that create a movie using ffmpeg video encoding API. Basically I call avcode_encode_video() for each image of the movie as explained here
But in my use case I actually have many informations available about the image that could greatly help the encoder (and hopefully makes the encoding process much faster). The video I’m creating is a sequence of consecutive computer screen captures and for instance I know the list of clipping rectangles of the parts of the screen that actually changed between two frames. In many cases this is reduced to tiny parts of screen like some mouse movement or clock updates.
Is there any way using the ffmpeg C API to provide this information to encoder ?
If not is there any other free encoder providing an API that could use that kind of informations ?
-
Is it posible to add an HTML page as an overlay in a RTMP stream using Nginx and FFMPEG ?
4 août 2021, par tanowallaI have already installed Nginx on a EC2 instance (Ubuntu 18.04) for livestreaming to Youtube using RTMP. I want to setup a HTML page with a world clock and transparent background.


I installed Nginx using this tutorial.


https://www.scaleway.com/en/docs/setup-rtmp-streaming-server/


Would it be possible to load the HTML page using NGINX and FFMPEG so i can overlay it over the RTMP livestream incoming from a camera and push it to Youtube ?


I hope someone gets the idea, i apologize for my english, it is not my native language and have really no idea if this is even possible.


Thank you very much in advance.


-
FFmpeg on iPhone - Modifying Video Orientation
6 avril 2015, par Matthew McGooganI’m messing with h264 videos loaded with FFmpeg on the iPhone 3GS. The problem is any videos recorded in "Portrait" orientation have a transformation matrix applied to them causing them to display rotated 90 degrees counter-clock.
From what I understand thus far, I just need to modify the transform matrix in the ’tkhd’ atom. The problem is I am having trouble accessing or modifying this data. I checked out the FFmpeg implementation for :
static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
which clearly shows how the matrix is accessed in avformat but when I try to access the header bytes using the same functions I am not getting any rational values. Even if I were to successfully pull the matrix I’m not sure how to replace it ? FFmpeg has functions for retrieving and appending to the track header but nothing for replace it seems ?
Any help would be greatly appreciated.
Thanks,
Matt.