
Recherche avancée
Autres articles (40)
-
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 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 ;
Sur d’autres sites (5584)
-
x264_encoder_encode() how to watch function body ?
25 février 2016, par ULTRANjI’m working with VLC player source code (GitHub link) and I need to study how the function
x264_encoder_encode()
in codech.264
works. This function is used in filex264.c
but i couldn’t find it’s body and decloration. Where can I see it ? -
Electron and ffplay / ffmpeg to watch h264
21 novembre 2017, par DmitryIs it possible to render output from ffmpeg process in Electron or Browser app ?
I know ffmpeg was bundled to Electron package for some reason. The main goal is to get rtsp stream from LAN video source without convertion it but it will be enough for me if anyone show me basic example of getting video(and audio) from ffmpeg and render it. Thanks.
-
Adjusting video length to fit audio length in FFmpeg
8 avril 2015, par SpreadysThis has been driving me mad !
I have video.avi, a raw uncompressed video with a duration of 6mins
I have audio.wav, a raw uncompressed audio with a duration of 9minsI need to mux these together, but map the timing information from the audio.
Using Vsync 2 I would hope that video frames get duplicated in order to do this.My current (failed) attempt is
ffmpeg -i video.avi -i audio.wav
c:v rawvideo -c:a copy
vsync 2 -map 0:0,1:0 -map 1:0,1:0
newvideo.aviMy understanding is that the -map first designates what file:stream, and this is followed by the file:stream to be used for timing information.
I have attempted all my usual research methods in an attempt to avoid asking but it is still resulting in the avi container holding two streams with the video length unchanged.
If anyone can shed some light on my errors, I would be very grateful....or if you need further info - please ask !Thanks
DavidAny guidance on what other information may promote some suggestions to where i’m going wrong also appreciated.
Thanks