
Recherche avancée
Autres articles (103)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (11714)
-
Output FFMPEG segments to GCS
28 janvier 2019, par TerrabyteIm trying to output an ffmpeg hls stream to google cloud storage after each segment is created or at least after the entire encoding is done. Doesn anyone know how to accomplish this ?
This is what i have in my bash script :
$FFMPEG -hide_banner -i "$infile" \
$PASSVAR \
-y \
-codec:v "$VIDEO_CODEC" \
-codec:a "$AUDIO_CODEC" \
-threads "$NUMTHREADS" \
-map 0:v \
-map 0:a \
-flags \
-global_header \
-f segment \
-segment_list "$playlist_name" \
-segment_time "$SEGLENGTH" \
-segment_format mpeg_ts \
-g "$key_frames_interval" \
-keyint_min "$key_frames_interval" \
$resolution \
$bitrate \
$FFMPEG_ADDITIONAL \
$FFMPEG_FLAGS \
"$OUTPUT_DIRECTORY/$output_name" | gsutil -m mv "$OUTPUT_DIRECTORY/$output_name" gs://bucket-vod-example
}does anyone know how to output the files to gsutls as it’s being encoded ? I can make the output the mounted storage point of google cloud storage but encoding directly to it is extremely slow so if possible is there way to encode locally then transfer as it’s being encoded ?
-
avisynth : use AviSynth+'s frame properties to set various fields
23 septembre 2021, par Stephen Hutchinsonavisynth : use AviSynth+'s frame properties to set various fields
* Field Order
* Chroma Location
* Color Transfer Characteristics
* Color Range
* Color Primaries
* Matrix CoefficientsThe existing TFF/BFF detection is retained as a fallback for
older versions of AviSynth that can't access frame properties.
The other properties have no legacy equivalent to detect them.Signed-off-by : Stephen Hutchinson <qyot27@gmail.com>
-
hwcontext_vulkan : actually use the frames exec context for prep/import/export
15 mai 2020, par Lynnehwcontext_vulkan : actually use the frames exec context for prep/import/export
This was never actually used, likely due to confusion, as the device context
also had one used for uploads and downloads.
Also, since we're only using it for very quick image barriers (which are
practically free on all hardware), use the compute queue instead of the
transfer queue.