
Recherche avancée
Autres articles (43)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (9354)
-
Updated license link and added package information.
15 décembre 2011, par Sebastian Tschan.gitignore m README.md m application.js m gae-go/app/main.go m gae-python/main.py m index.html m jquery.fileupload-ui.css m jquery.fileupload-ui.js m jquery.fileupload.js m jquery.iframe-transport.js m jquery.postmessage-transport.js m jquery.xdr-transport.js + package.json m php/index.php m (...)
-
CMake configuration for ffmpeg in C++ project
7 mai 2024, par pp492I have installed ffmpeg (version 4) with Homebrew and I am trying to use the various ffmpeg libraries in a C++ project, but I am getting multiple errors during linking.



Undefined symbols for architecture x86_64:
 "_av_free", referenced from:
 _main in main.cpp.o
 "_av_packet_alloc", referenced from:
 _main in main.cpp.o
 "_av_parser_init", referenced from:
And so on ... 




I have included the libraries as follow



extern "C" {
 #include <libavutil></libavutil>frame.h>
 #include <libavutil></libavutil>mem.h>
 #include <libavcodec></libavcodec>avcodec.h>
}




But still, this doesn't work. I think I might have missed something in my
CMakeLists.txt
file, which at the moment looks like that :


cmake_minimum_required(VERSION 2.6)
project(decode_encode)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "-D__STDC_CONSTANT_MACROS")

add_executable(decode_encode main.cpp)




I most likely need to specify additional linking flags, but is there is a better way to handle the linking part in a
CMakeLists.txt
file ?

-
Very long ffmpeg command due to drawtext commands for every second
24 avril 2022, par principal-ideal-domainI have a video of about 20 minutes length and want to show every second a different text using the drawtext filter. I used a java software to compute a very long ffmpeg command (more than 100,000 characters long). Pasting it into the PowerShell took a long time and then I got the error


Program 'ffmpeg.exe' failed to run: The filename or extension is too longAt line:1 char:1



So the command is obviously too long. Can I somehow outsource it into an external file ? I'm not looking for the subtitles filter instead of the drawtext filter because I'm using special functionalities of drawtext.