
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (74)
-
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (8583)
-
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


-
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 ?
-
avformat_open_input return value, error code on NaCl Module
7 février 2016, par JarI’m trying to port FFmpeg into my NaCl module.
So far, my module linked ffmpeg and SDL libraries.
It already can play YUV format video which is directed load into memory and copy into YUVOverlay buffer (it’s very easy).
Now, I want to use ffmpeg to decode video, but when I call the function avformat_open_input it returns
-5
when input is URL string, such asrtmp://
ormmsh://
; it returns-1052488119
when input is file name, such as/saved/tmp
(I mount the file system - html5fs).
There are some questions :
- What means of -5 and -1052488119 ?
- If file can’t open by avformat_open_input, is it possible the input type is from buffer not from file name or url string ?
If I’m not clearly about my question or description, you can tell me.
If you are doing the same thing or having the same problem, we can discuss together.Thanks,
Jar