
Recherche avancée
Autres articles (75)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (14776)
-
sws/aarch64/yuv2rgb : save a few mul and add
25 mars 2016, par Clément Bœsch -
vp8/x86 : save one register in SIGN_ADD/SUB.
27 décembre 2014, par Ronald S. Bultje -
How to save ffmpeg stream with datetime
18 janvier 2013, par user1800256I would like to write an output format from a ffmpeg encode line to save the stream in a SD card with date and hour.
To simplify the question I write the following (just ignore the extras) :
import subprocess, sus, os, datetime, time
from subprocess import Popen, PIPE
def call_command(command):
subprocess.Popen(command.split(' '))
call_command('ffmpeg -f video4linux2 -y -s qvga -r 24 -i /dev/video0 \
-vcodec mpeg2video /home/pi/webcam_+%Y/%m/%d_at_%H:%M:%S.mpg')I also tried another solutions like define firstly the filename and call it from the ffmpeg line but it doesen't work.