
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (39)
-
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
MediaSPIP Init et Diogène : types de publications de MediaSPIP
11 novembre 2010, parÀ l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)
Sur d’autres sites (4460)
-
avcodec/tiff : Limit filtering to decoded data
23 novembre 2018, par Michael Niedermayeravcodec/tiff : Limit filtering to decoded data
Fixes : Timeout
Fixes : 11068/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TIFF_fuzzer-5698456681709568Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Bypass Nvidia's 2 Stream Encode Limit On Windows
28 novembre 2018, par NimbleI’m trying to encode 3 video streams simultaneously in FFmpeg but due to Nvidia’s 2 stream encode limit on GTX / RTX GPUs I have to encode one of the streams with my CPU. This forces me to output multiple files as opposed to one properly mapped file containing all audio and video streams which has many drawbacks involving synchronization and ease of use.
Before actually considering investing $1000+ in a comparable Quadro GPU, which has no encode stream limits, I thought I’d search around to see if anyone has bypassed said limit. Eventually I came across this GitHub repository :
https://github.com/keylase/nvidia-patchIt seems to actually work... but it’s Linux only. Much of my hardware is incompatible with Linux so migration just isn’t an option for me. Not being smart enough to learn from this method and apply it to a Windows environment I kept looking and came across this repository :
https://github.com/Matviy/nvidia-NVENC-multi-session-patchIt would seem this is a method to bypass the limit on Windows but the instructions are way over my head. I’ve asked a few of my buddies who are experienced in coding but each one only seems to understand each method to a point and can’t really help.
Was hoping someone could give some insight on the subject, possibly offering a solution, or confirming that the instructions are simply too vague.
-
lavf/matroskadec : Do not use strncat() to limit copying a one-char constant.
10 décembre 2018, par Carl Eugen Hoyoslavf/matroskadec : Do not use strncat() to limit copying a one-char constant.
Instead add the character to the snprintf above as suggested by Mark.
Silences a warning :
libavformat/matroskadec.c : In function 'webm_dash_manifest_cues' :
libavformat/matroskadec.c:3947:13 : warning : 'strncat' specified bound 1 equals source length [-Wstringop-overflow=]
strncat(buf, ",", 1) ;
^