
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (37)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7515)
-
Pre- and postrecording using ffmpeg
29 juillet 2020, par SanderI want to to be able to add a 1-2 second "prerecording" to an output file, like usually is the case on a cctv camera. (a few seconds video from before the alarm is triggered)



I have an idea on how to have it work in a hacky way, but I'm sure there's already a better solution for it.
1 ffmpeg instance records on a 5 second loop outputting a video every 5 seconds
every 5 seconds the oldest file is removed to keep some space available via cron/script/loop/...
When the event is triggered a second ffmpeg instance starts recording for 5 seconds and prepends the last 5-second video from the other process to it's own video and outputs the final video to be prerecording+recording.mp4



This script will run on a sd-powered device, so the less writes the better (but this could be done in a ramdisk)



Is there a better way to do this ?


-
FFMPEG and AVCONV amix audio files lowers a volume
13 novembre 2019, par LiborRihaI am using this command
foreach( $records as $record ) {
if( $inputs == 0 ) {
$meta_tags .= "1";
} else {
$meta_tags .= ":0";
}
$inputs++;
$files .= ' -i ' . $path . $record;
}
$meta_tags .= "]";
$shell_command = 'ffmpeg '. $files .' -filter_complex "'. $meta_tags .'amix=inputs='. $inputs .':duration=longest" output.wav';Everything goes well but when the mix is done, it lowers a volume. Can you please help me ? I have tried avconv too.
-
Seeking video while transcoding with ffmpeg
5 octobre 2012, par ErikI'm building an application that records live tv (dvbt : mpeg.ts-files) and immediately transcodes it with ffmpeg to a webm file. I'm able to do that at a constant rate ; so ffmpeg doesnt catch up the growing file.
Now I want to playback this file on an html5 website. This works, but when ffmpeg isn't done transcoding (and my webm-file is still growing), i'm not able to seek it (and there is no progress bar).
Is it possible to seek a video file while it is beeing transcoded ? Am i missing some ffmpeg-settings ? Or is webm the problem ?
This is what I have now :
ffmpeg -re "inputfile.ts" -y -f webm -vcodec libvpx -acodec libvorbis \
-aq 90 -ac 2 -b:v 1300k -threads 2 "outputfile.webm"Thank you