
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 (22)
-
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 (...) -
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 (...) -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (3266)
-
FFmpeg framerate parameter
24 avril 2020, par mentalmushroomI am confused by the FFmpeg
framerate
parameter. As far as I understand the docs and wiki, it sets the number of frames per second for the input (and the output unless-r
option is specified). In fact, when I set the framerate to 1, the video is being played pretty much at its normal speed (25-30, but definitely not 1 frame per second as expected). Setting framerate to 2 makes it play around twice as fast (not 2 frames per second).


To give a little bit more details, there is a python script which reads a video sample frame-by-frame as fast as it can and outputs these frames immediately to FFmpeg :



python main.py -i myvideo.mp4 | ffmpeg -v warning -f rawvideo -pixel_format bgr24 -video_size 768x432 -framerate 2 -i - http://0.0.0.0:3004/fac.ffm




What could be the reason for such behavior ?


-
How to build FFmpeg executable for commercial use using Windows ?
18 octobre 2024, par Xel NagaI'm developing a commercial software and it requires ffmpeg.exe to run properly.



I'm aware of the FFmpeg legal page (https://www.ffmpeg.org/legal.html) and want to Compile FFmpeg without "—enable-gpl" and without "—enable-nonfree". However the compilation guide (https://trac.ffmpeg.org/wiki/CompilationGuide) seems neglected because some links lead to 404 pages, and some required programs didn't install properly on my PC, crashed in fact.



I tried all the ways to compile but could not succeed. I use Windows 8.1 and I'm not comfortable with minGW, MSYS, MSVC.



How can I compile FFmpeg executable for commercial use, or better, how can I download ffmpeg.exe (compiled for commercial use) without hassle ?


-
Should I open source my source code when I rebuild ffmpeg and dynamiclly link to my program ? [closed]
20 septembre 2024, par openjzI have a c++ program developed on visual studio 2022, and my program need to work with ffmpeg, I rebuild it and I don't know if there is open source problem.


I rebuild ffmpeg for windows msvc paltform (according to https://trac.ffmpeg.org/wiki/CompilationGuide/MSVC) by customize the build configuration, but I don't modify the source code and build script of ffmpeg, and I don't enable
gpl
orgpl v3
in the build configuration, ffmpeg is dynamiclly linked to my program, I'm sure that the only license I should concern is theLGPL-2.1 or later
, in this case, if I want to distribute my program for commercial use, should I open source my source code ?