
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (103)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (11717)
-
Revision b1b4ba1bdd : Properly save neon registers. Replace current code which corrupts the stack by
27 septembre 2013, par Christian DuvivierChanged Paths :
Modify /vp9/common/arm/neon/vp9_idct16x16_neon.c
Add /vp9/common/arm/neon/vp9_save_reg_neon.asm
Modify /vp9/common/arm/neon/vp9_short_idct16x16_add_neon.asm
Modify /vp9/vp9_common.mk
Properly save neon registers.Replace current code which corrupts the stack by
duplicate of vp8 code to save and restore neon
registers.Change-Id : Ibb0220b9aa985d10533befa0a455ebce57a2891a
-
FFMPEG : how to save input camera stream into the file with the SAME codec format ?
19 janvier 2014, par user3211926I have the camera-like device that produces video stream and passes it into my Windows-based machine via USB port.
Using the command :
ffmpeg -y -f vfwcap -i list
I see that (as expected) FFmpeg finds the input stream as stream #0.
Using the command :
ffmpeg -y -f vfwcap -r 25 -i 0 c:\out.mp4
I can successfully save the input stream into the file.
From the log I see :
Stream #0:0 : Video : rawvideo (UYVY / 0x59565955), uyvy422, 240x320, 25 tbr, 1k tbn, 25 tbc
No pixel format specified, yuv422p for H.264 encoding chosen.So, my input format is transcoded to
yuv422p
.My question :
- How can I cause FFmpeg to save my input video stream into out.mp4 WITHOUT transcoding - actually, to copy input stream to output file as close as possible, with the same format ?
-
checkasm : x86 : properly save rdx/edx in checked_call()
16 août 2015, par Henrik Gramnercheckasm : x86 : properly save rdx/edx in checked_call()
If the return value doesn’t fit in a single register rdx/edx can in some
cases be used in addition to rax/eax.Doesn’t affect any of the existing checkasm tests but might be useful later.
Also comment the relevant code a bit better.