
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (53)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (6337)
-
ffmepg binarys can't be implemented in the code
2 janvier 2016, par yokoI am using ffmpeg and C# in my project. I want to write the frames I have imported into a new video. The Problem is, as soon as I want to create a new instance of the
VideoFileWriter
class, which is delivered by theAForge.Video.FFMPEG
namespace, I get a FileNotFoundException (while runtime) :System.IO.FileNotFoundException" in System.Windows.Forms.dll
So, I have researched, and some sourced claim that you need not only to import the dll’s into your project, but also in your output folder(like this one)
I did it, it did not help either.I have already taken a look, I have imported all dll’s into my project, and I have set up their location in the PATH-Variables (And yes, restarted.)
The Codeline, which is throwing the Exception is the following
VideoFileWriter writer = new VideoFileWriter();
anyone else had this Problem or knows a solution ?
-
Use argument shortest in C++ code in FFMPEG
7 juillet 2021, par Little MaxI need to set up the argument "-shortest" but in c++ code. I know that I can set up an argument with value for example :


av_opt_set(codecContext, "crf", "28", 0);



But here is the thing, there is a value, but in shortest no value.
So how can I set up shortest in c++ code


Thanks in advance


-
Pure C-Code of x264 of ffmpeg
21 septembre 2015, par Codec GuyI am doing some hardware implementation on Ratecontrol of FFMPEG. I am using x264 Encoder, here I am not able to find the C-Code implementation of this function
intra_mbcmp_x3_8x8c
.I tried to trace it back wards, but there is only assembly implementation of the code. Can some body please guide to the Pure C-implementation of the latest x264.
It would also be helpful, if someone helps me in disabling x86 flags in FFMPEG, so that I will be able to run the pure C implementation.
Note:I have checked a similar question here.
But I was not able to get my answer.