
Recherche avancée
Autres articles (71)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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 (...)
Sur d’autres sites (2875)
-
ffmpeg : stop using AVStream.codec on stream copy
27 septembre 2016, par James Almerffmpeg : stop using AVStream.codec on stream copy
This commit is based on commit 35c8580 from Anton Khirnov <anton@khirnov.net>
which was skipped in b8945c4.The avcodec_copy_context() call in the encode path is left in place for now
as AVStream.codec is apparently still required even after porting ffmpeg to
the new bsf API.Tested-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : James Almer <jamrial@gmail.com> -
ffmpeg start/stop rtmp streams on the fly
14 août 2020, par almosnowI have a media stream that I transmit as rtmp to several endpoints, for this I use ffmpeg and the
tee
pseudo-format.

Sometimes one of the sites may come online (or go offline) and I would like to start/stop streaming to it accordingly.


Restarting ffmpeg is not an optimal choice as all the streams that are currently being transmitted would get cut.


Is there a way to add/remove targets to
tee
on the fly ? Or a way to achieve a similar thing with ffmpeg and tools from a linux environment ? Perhaps there's something that already does this with rtmp streams.

-
FFMPEG - How do I make a video stop scaling
7 septembre 2020, par JunctionNinjaI have a few videos which I merged and they are in a .mkv format, the output is MP4. Some of them are different resolutions and therefore the smaller ones upscale. How would I stop this ?


I have tried to make it .mkv as the output and I still get the same error.
I don't know how to fix this, here's my ffmpeg.bat file.


ffmpeg -f concat -safe 0 -i files.txt -c copy output.mp4



This doesn't work for me like said above with it randomly scaling.
Mainly need a fix to stop it scaling at all.