
Recherche avancée
Autres articles (90)
-
À propos des documents
21 juin 2013, parQue faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
Document bloqué en file d’attente ?
Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...) -
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 (...) -
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 (13594)
-
How to add compression to ffmpeg command
13 septembre 2019, par balfredI am trying to add a good level of compression to the following ffmpeg command or if it is already good can you help me understand ?
I have seen that people might have luck using this command but I dont know how to merge it into mine
ffmpeg -i sourceFilePath -vcodec h264 -acodec mp3 newFilePath
This is my current command that I am using that I need help understanding why the previous command might be a better solution but how to implement my additional arguments
ffmpeg -i sourceFilePath -vcodec libx264 -profile:v baseline -level 3 newFilePath
I want to see optimal compression and still have my existing functionality using my additional arguments. I dont know what will produce the best results, this is out of my area of expertise.
-
How to concat two video webm files over nodejs ?
5 décembre 2016, par SalvatoreADI am creating a web video conferencing app where there are many people comunicating each other, and every 60 seconds I want to upload webm files (one video webm file for one person) to the server and add to the previous file.
Is it possible to append video file ?.
I use this code :
ffmpeg()
.input(filePathTMP)
.on('error', function(err) {
console.log('An error occurred: ' + err.message);
})
.on('end', function() {
console.log('Merging finished !');
})
.mergeToFile(filePath, filePathBase + 'temp');This code combines two files (filePathTMP and filePath) and and convert them before you join them, wasting time. Is there a similar command that combines the files without decoding ?
-
avformat/movenc : mark write_colr as experimental
4 mars 2015, par Michael Niedermayer