
Recherche avancée
Autres articles (89)
-
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 (...) -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (8723)
-
arm : add a cpu flag for the VFPv2 vector mode
9 décembre 2015, par Janne Grunauarm : add a cpu flag for the VFPv2 vector mode
The vector mode was deprecated in ARMv7-A/VFPv3 and various cpu
implementations do not support it in hardware. Vector mode code will
depending the OS either be emulated in software or result in an illegal
instruction on cpus which does not support it. This was not really
problem in practice since NEON implementations of the same functions are
preferred. It will however become a problem for checkasm which tests
every cpu flag separately.Since this is a cpu feature newer cpu do not support anymore the
behaviour of this flag differs from the other flags. It can be only
activated by runtime cpu feature selection. -
ffmpeg : Could not find tag for codec none in stream #2
20 août 2022, par StOMichaTo add a second audio track to a video having already one audio, I tried


$ ffmpeg -i 1.mp4 -i 2.m4a -map 0 -map 1:a -c:v copy -shortest __out.mp4
Could not find tag for codec none in stream #2, codec not currently supported in container
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument



From here, I added the -v option :


ffmpeg -i 1.mp4 -i 2.m4a -map 0 -map 1:av -c:v copy -shortest __out.mp4
Stream map '1:v' matches no streams.



The file 2.m4a has the correct audio. How to fix this ?


-
ffmpeg is throwing an error unable to find the output format, and then invalid argument unix ://1.sock
15 août 2022, par Sanil JainI'm listening to a stream of data using UNIX socket and converting that stream of data into hls.


the ffmpeg command that i used is :


ffmpeg -listen -i unix://1.sock -ar 16000 -ac 1 -c:a aac -hls_time 1 -f hls -hls_playlist_type event playlist.m3u8


Unable to find a suitable output format for 'unix://1.sock'
unix://1.sock: Invalid argument