
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (36)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (5391)
-
avcodec/nvenc : add UHQ to AV1 for NVENC
8 janvier, par Diego de Souza -
Laravel FFMPEG Add HLS Video Watermark issue
6 juin 2020, par Jefriiyer SI'm using "pbmedia/laravel-ffmpeg" : "^7.0" in "laravel/framework" : "^7.0" , I want to add water mark to the HLS video, Here is the example given in the github repo https://github.com/pascalbaljetmedia/laravel-ffmpeg



FFMpeg::open(['video.mp4', 'video2.mp4'])
 ->export()
 ->addFilter(function(ComplexFilters $filters) {
 // $filters->watermark(...);
 });




But It's not have enough information, Here is the working example everyware in the internet



addFilter(function ($filters) {
 $filters->watermark($watermarkPath, [
 'position' => 'relative',
 'bottom' => 50,
 'right' => 50,
 ]);
 })




But the watermark method has 2 more required parameters in the library



addFilter(function (ComplexFilters $filters) {
 $filters->watermark($in,$watermarkPath,$out, [
 'position' => 'relative',
 'bottom' => 50,
 'right' => 50,
 ]);
 })




What should I pass for $in and $out
Here is the full code which I have



$low = (new X264('aac'))->setKiloBitrate(100);
$mid = (new X264('aac'))->setKiloBitrate(250);
$high = (new X264('aac'))->setKiloBitrate(500);


 FFMpeg::fromDisk('local')
 ->open($this->video->path)
 ->exportForHLS()
 ->addFilter(function (ComplexFilters $filters) {
 $filters->watermark(null,public_path('watermark.png'),null, [
 'position' => 'relative',
 'bottom' => 50,
 'right' => 50,
 ]);
 })
 ->addFormat($low)
 ->addFormat($mid)
 ->addFormat($high)
 ->save("public/videos/{$this->video->id}/{$this->video->id}.m3u8");




By passing null I can't able to see any watermark , If I remove those nulls , I'll have error






Please look at the required parameters in watermark function under ComplexFilters,
Thanks :).


-
avcodec/ffv1enc : mark RGB48 support as non-experimental
5 janvier 2018, par Jérôme Martinezavcodec/ffv1enc : mark RGB48 support as non-experimental
Resulting bitstream was tested with a conformance checker
using the last draft of FFV1 specifications.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
Also the files are already in the wild, and decoder support is
thus needed. And with decoders widely supporting it, there is no
advantage in not allowing it in the encoder.
The exact bitstream format may change in future versions of the
spec, if improvments are found.