
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (58)
-
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (7817)
-
configure : Force mingw’s ld to keep the reloc section
21 septembre 2015, par Alex Smithconfigure : Force mingw’s ld to keep the reloc section
Binutils will always strip the relocation information from executable
files even if it needs it (dynamicbase/ASLR). We can work around this
by using the pic-executable flag combined with setting the correct entry
point since apparently ld forgets what that should be. This problem
affects both 32 and 64-bit mingw-w64.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
ffmpeg force format when I using tcp protocol as output
22 janvier 2019, par Moein MohammadianI want to cut a video and start a tcp server with ffmpeg and a tcp client reads the cut video’s content but I have to force a format.
ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -f mpeg2video tcp://127.0.0.1:8010?listen=1
If I don’t specify a format I get an error
Unable to find a suitable output format for 'tcp://127.0.0.1:8010?listen=1'
but if I save cut video to a file I don’t have to enter a format
ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 output.mp4
The problem is when I specify a format it takes more time to create cut video.
Is there any way I don’t specify format when I create a tcp server.Basically I want to cut a video and send the cut video over tcp/ip as fast as I could.
-
Force CMD to update pipe to clipboard
2 janvier 2021, par Dominic MasonI'm running ffmpeg to find scenechanges successfully, but was hoping to ouput ffmpeg's STDERR to another program, starting by testing it by piping to the clipboard. Capturing STDERR alone
2 |
makes ffmpeg think it should output using format 2 through a pipe, but I found I could successfully capture STDOUT & STDERR together :

ffmpeg -i "inputfile.mkv" -filter_complex "select='gte(scene,0.4)',metadata=print:file=FrameDifferences.txt" -f null - 2>&1 | clip



Problem is, when I pipe to the clipboard, I only get an update once the program has finished running. As one of my reasons for piping STDERR was to get progress updates on the encoding, this was rather sad. Is there a simple way to force CMD to periodically update the pipe ? Or is this a limitation to using the clipboard such that I'll have to begin testing by preparing another program to receive the pipe ?