
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (67)
-
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 (5092)
-
ffmpeg lost quality putting two movies vertically
5 juillet 2016, par Nir Diamantim putting two videos side by side vertically with ffmpeg.
both of the video are in hight quality. but after i use this command :
ffmpeg -i input1t.avi -i input2 -filter_complex vstack output.avi
you can see an screen capture of the output movie here :
enter image description herei loss a lot of quality and the output movie looks very bad
any one have an idea why ? and how to solve it ?
-
How to write ffmpeg windows command for file path inside double quotes option
19 février 2021, par Herahadi Anplease help


I want to use ffmpeg for my c # application but an error appears


this is my code


videoPath = @"c:\location\in.mp4";
tempVideoPath = @"c:\another_location\out.mp4";

process.StartInfo.FileName = @"ffmpeg.exe";
 
process.StartInfo.Arguments = "-loop 1 -i \""+tbBGFrame.Text+ "\" -vf \"movie=\""+videoPath+ "\",scale=1900:-1[inner];[in][inner]overlay=70:70:shortest=1[out]\" -y \""+tempVideoPath+"\"";



the problem is inside movie parameter. i have to include video path inputed by user but its give an error because its already double quote exist before.


its successfully if i try on windows cmd like this


> cd "C:\Users\Toshiba\Pictures\test vcp\input_mp4_dir\"
> ffmpeg.exe -loop 1 -i Coronavirus00000000.jpg -vf "movie=input.mp4,scale=1180:-1[inner];[in][inner]overlay=70:70:shortest=1[out]" -y out.mp4



but how i can run that command wihtout change directory to input.mp4 directory ?


-
How does ffmpeg use concat of filter in C?
12 mai 2022, par JeycriIt's OK for me to use the command line like this.


ffmpeg -i test1.mp4 -i test2.mp4 -filter_complex "movie='test1.mp4',scale=640:360[v1];movie='test2.mp4',scale=640:360[v2];[v1][v2]concat" testout.mp4



This is my configuration code.


AVFilterInOut* inputs = avfilter_inout_alloc();
AVFilterInOut* outputs = avfilter_inout_alloc();
...
avfilter_graph_parse_ptr(filter->filterGraph, 
"movie='test1.mp4',scale=640:360[v1];movie='test2.mp4',scale=640:360[v2];[v1][v2]concat", 
&inputs, &outputs, NULL)
avfilter_graph_config(filter->filterGraph, NULL)



Reported error


[h264 @ 0000026dfecef780] Application has requested 17 threads. Using a thread count greater than 16 is not recommended.
[h264 @ 0000026dffae9d00] Application has requested 17 threads. Using a thread count greater than 16 is not recommended.
Output pad "default" with type video of the filter instance "in" of buffer not connected to any destination



How can I configure the filter correctly?