
Recherche avancée
Autres articles (59)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (5366)
-
Why is ffmpeg executable so much faster than using libfdk_aac directly ?
3 février 2016, par lancejabrWhen I encode a wav file to AAC using the ffmpeg executable (using libfdk_aac and setting -threads 1), the process completes several times faster than when I use the AAC encoding example provided by the libfdk_aac library itself. I looked at the code and the central loop in libfdk_aac is almost identical to the aac_encode_frame method in the ffmpeg source.
Anyone know why the executable would be so much faster ? I’m looking into compilation options but we’re talking like 8x speedup so I don’t think it’s just putting -O3 on there... Does ffmpeg encode multiple buffers at once even when there is only one thread ?
-
Docker run cannot find existing file ?
11 juillet 2023, par dexonterI am trying to run this command to test if the gpu is being recognized


docker run --rm --device /dev/dri:/dev/dri jrottenberg/ffmpeg:5.1.2-vaapi2004 -hwaccel vaapi -hwaccel_output_format vaapi -i /root/Server_transcoder/bbb_sunflower_1080p_30fps_normalORIG.mp4 -c:v h264_vaapi /tmp/example.mp4



And it errors out with :
/root/Server_transcoder/bbb_sunflower_1080p_30fps_normalORIG.mp4: No such file or directory


The file exists in there and the path is not misspelled - I checked like 10 times


What could be the problem here ?? I am clueless


-
Configuring PHPVideoToolkit library
21 novembre 2013, par mrpotatoheadI'm trying to set up PHPVideoToolkit to use for converting videos on a server and can't seem to get the documentation/examples working. After setting the basic configuration, as well as making some slight changes to even be able to see the documentation I'm getting the following error (among others) :
Declaration of PHPVideoToolkit\FfmpegProcess::getExecBuffer() should be compatible
with that of PHPVideoToolkit\ProcessBuilder::getExecBuffer()and this one, several times :
Undefined offset: 2
[2] => /var/www/media_html/phpvideotoolkit-v2/src/PHPVideoToolkit/FfmpegParserAbstract.phpAfter digging around for a little bit in various source files I realized I'm probably doing more harm than good changing stuff around and am probably doing something wrong.
I'm stumped as to how to fix this so thanks in advance to anyone who knows how to.