
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)
-
Automatic ffmpeg conversion of only completed, fully uploaded files
8 février 2012, par user374407Maybe it would be best to start by describing the scenario.
We have a Debian server with ffmpeg that we use to covert various video files into FLV.
The files are supplied by a number of different people via FTP and are kept in the "uploads" folder.I need to write a PHP script that would go through all the files in the uploads folder, select the ones which are complete (i.e. not currently being uploaded or without any uploading errors) and then convert them to FLV using ffmpeg.
I can do the conversion and everything else, but how do I determine whether a file is complete and fully uploaded ?
Many thanks !
-
Thumbnail from Video VLC VS FFMPEG
28 août 2013, par Flood GravemindI am uploading videos to SQL SERVER SQL database using MVC. So far I can programmatically download unprocessed videos to my Computer process them eg convert to desired format/generate thumbnails/ etc etc and reupload the videos. I am using
VLC Command Line
[I know this might get me thumbs down but hey it works.] and a custom program. I read a lot about FFMPEG but most examples are inPHP
and I am yet to come across any MVC example. I am thinking of transitioning toFFMPEG
but want to ask people if the right place forFFMPEG
is on the SERVER or on a PC ? And can you point me to any examples/tutorials ofFFMPEG
inMVC/ASP
. -
FFMPEG how to split avi to multi parts [on hold]
1er juin 2014, par user3695970am running ffmpeg.exe from windows xp i want to know is there a command i can cut .avi movie file into several parts without a setting start and end time.
1 : is it possible to set a value of MB for example slick every 40mb till it reaches end of movie file
2 : is it possible to cut movie in to several parts by 10minutes or custom value time.
please guys you people have alot of experience in this field i seek help please anybody thanks.
ffmpeg -i largefile.mp4 -t 00:50:00 -c copy smallfile1.mp4 -ss 00:50:00 -c copy smallfile2.mp4
tried this but i need better example a 1 line of command to slice entire movie into parts please