
Recherche avancée
Autres articles (73)
-
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (10285)
-
Can FFmpeg concatenate files from a different domain ?
18 mars 2018, par user3080392I’m attempting to concatenate various .ts video clips into one video and then convert the video into an .mp4 file. I know I can make a .txt file formatted like so :
file '/path/to/file1'
file '/path/to/file2'
file '/path/to/file3'and then concatenate them like so :
ffmpeg -f concat -i mylist.txt -c copy all.ts
and then convert the file like so :
ffmpeg -i all.ts -acodec copy -vcodec copy all.mp4
My question is, can my .txt file be urls from another domain ? e.g. :
http://somewebsite.com/files/videoclip1.ts
http://somewebsite.com/files/videoclip2.ts
http://somewebsite.com/files/videoclip3.tsOr, do I first have to download all these clips, store them locally on my domain, then make a .txt file pointing to them ? I’m using PHP. Thanks.
-
imageresizing.net : remote, extensionless files
21 janvier 2015, par cwnchcknI am trying to set up a thumbnailing service supporting the most common image formats as well as PDF and some video formats. The storage backend is a simple HTTP server. The files, however, are stored using synthetic names equal to their crytographic hash and do not have extensions.
I have a working system running ImageResizer as a HttpModule, loading the files using RemoteReader. It is set up to skip file type checks. However, I need to find a way to specify the exact decoder to use (such as with WIC, that supports &decode=wic in the request arguments), for instance &decoder=pdf or &decoder=ffmpeg. I suppose parsing the request arguments in PostAuthorizeRequestStart and extracting the decoder parameter value would be a good place to start, but I have no idea what to do next, as this is my first time ever touching Microsoft tech and the ASP.NET app anatomy is not immediately obvious.
I would appreciate any hints, thanks
-
How can I obtain the psnr value of hls files (.ts fragments and the .m3u8 manifest) using FFMPEG ? [closed]
6 octobre 2020, par HarryI would like to compare both video files :
-The original .mp4 video
-And the encoded hls video file


Could someone help me ?