
Recherche avancée
Médias (3)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (66)
-
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
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 -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (9195)
-
Stream as a standard input for ffmpeg in C#
24 novembre 2013, par Andrew SimpsonI have a C# Winform application.
I want to stream images as standard input to my web server.
ie :
I would use the Process Class in C# to execute FFMPEG with these arguments..
ffmpeg -i input -c:v libx264 -preset ultrafast -f rawvideo -
Whilst I know how to output and capture the memory stream within my C# app I do not know how to input a memory stream from within my C# app as standard input.
I guess the immediate question is can it be done ?
Thanks
-
use of ffmpeg select filter
3 avril 2019, par user651177I am stuck with the use of ffmpeg select filter as I want to pick up only the ending frame of a input video but I cannot figure out the selection expression for the filter to get the work done,
my code looks like this :ffmpeg -i in.mp4 -filter_complex "select=expr_selecting_lastest_frame, overlay=overlay_expr" out.jpg
now how do I coding the expr_selecting_lastest_frame ?
do you guys have ideas ?
is there any other way to get the work done ? please help, thank you ! -
Mix voiceover and background music with delay and volume
6 août 2019, par oldmanI don’t master ffmpeg but I really need to mix a voiceover with a background song.
The voiceover must start 5 seconds after the song, and must end 5 seconds before the song ends.
The music volume must be loud for the first 5 seconds and the last 5 seconds, but during the voiceover it should remain low.
Searching the internet, the closest I could come to my goal was this :
ffmpeg -i music.mp3 -i voiceover.mp3 -filter_complex "[0]asplit[a][b]; [a]atrim=duration=5,volume='1-max(0.25*(t-13),0)':eval=frame[pre]; [b]atrim=start=5,asetpts=PTS-STARTPTS[song]; [song][1]amix=inputs=2:duration=shortest:dropout_transition=0[post]; [pre][post]concat=n=2:v=0:a=1[mixed]" -map " "[mixed]" output.mp3
Could someone help me complete this script ?