
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (54)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)
Sur d’autres sites (3004)
-
Intel QuickSync and Nvenc at same Time on Ubuntu Server
15 mai 2019, par Ahmet GürerIm setting up a new Ubuntu Server with an Intel i7 6700k and Nvidia Gpu 1080ti. Is it possible to use Intel iGPU and Nvidia Gpu at same time on transcoding ?
Example :
Stream 1 transcoding with iGPU
Stream 2 transcoding with nvencI will use it at same time. Is that possible ?
- I Installed Nvidia Cuda Drivers and Intel SDK
- Activated iGPU and Nvidia GPU
- Try to start with iGPU but get the error that Driver not found
-
Ffmpeg : Compile argument for 'delogo' [closed]
7 avril 2024, par SulliI use a custom version of ffmpeg I compiled myself (for cuda support), but when I try to use the delogo filter I get :


[AVFilterGraph @ 0x586ea2283880] No such filter: 'delogo'
[vost#0:0/mpeg4 @ 0x586ea2281cc0] Error initializing a simple filtergraph



What argument should I use when compiling in order to be able to use this filter ? And can you tell me at the same time where I can find this information online ? It’s not the first time I can’t use a filter because of a missing library and if I’m not mistaken, the ffmpeg documentation does not mention it. https://ffmpeg.org/ffmpeg-filters.html#delogo


-
ffmpeg scaling nvenc maintaining aspect ratio
3 novembre 2019, par SambirI want to fully hw transcode mkv files to mp4 and up- /downscale the content maintaning the aspect ratio.
With CPU based transcoding you just add :
scale=1920:1080:force_original_aspect_ratio=decrease
With HW (CUDA) transcoding either
-resize
on Decoding side or-scale_npp
on encoding side is possible but both dont seem to be capable to force original acpect ratio.I want to for instance upscale 1920x800 file to 1920x1080 while filling the rest with black bars so I can overlay subtitles over the bars for instance...
With this i can fully transcoding using GPU power reather than utilizing cpu. any ideas ?