
Recherche avancée
Autres articles (109)
-
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (15114)
-
Not able to generate video using ffmpeg
27 janvier 2014, par user3239425I need to generate a vedio from a web page by capturing the screen. I tried in several ways but not able to find the solution. Any help can be appreciated. I am using phantomJS and FFmpeg
Thanks
Jaya -
avcodec/jpeg2000dec : zero Jpeg2000QuantStyle structure before use in get_qcd()
28 décembre 2013, par Michael Niedermayeravcodec/jpeg2000dec : zero Jpeg2000QuantStyle structure before use in get_qcd()
Fixes : msan_uninit-mem_7f50b84aac30_6823_mjp2.mov
Fixes use of uninitialized memory
Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
FFMPeg 2 pass c#
30 mars 2014, par zerosandonesI have been scouring through the web to try and find a good walkthrough of
FFMPeg
and it's nuances.I have a working setup currently. It is a two pass encoding. If I use a cmd window and use the following args :
ffmpeg -i c :\temp\175663.lbl.mp4.mps -vcodec mpeg4 -b:v 1300k -s
640x360 -aspect 16:9 -pass 1 -r 29.970 -an -f rawvideo -y NUL &&
ffmpeg -i c :\temp\175663.lbl.mp4.mps -vcodec mpeg4 -b:v 1300k -s
640x360 -aspect 16:9 -pass 2 -r 29.970 -acodec libmp3lame -ab 128k -ar
48000 c :\temp\encoded\175663.NTP.mp4I get a log file in the
ffmpeg.exe
directory. Which I believe to be a valid good log. I also get a valid good mp4 file. However, I have no idea whether the log file is actually used on pass2. If I run just the second pass (everything after the &&) in a cmd window all by itself. I get a valid mp4 file. Why is there no error ? This makes me suspect that the original pass isn't being used at all for the second pass.Secondly, how can I programmatically delete the log of pass1 ? Is there a naming convention that I can key into ? Eventually this application will be running on multiple threads on the same/other machines. So I can't exactly just delete *.log from the ffmpeg folder. Is there a way to name the files as they are created ?
Lastly, I do not seem to be able to start a new process in C# with the argument above. If I omit the ffmpeg (because the process is starting ffmpeg itself) I get an error on &&. I don't think it likes trying to do two passes. If I do one pass at a time, I do not get a log file to even try to use on the second pass.
Any info would be amazing. Thank you for your time in advance !