
Recherche avancée
Autres articles (69)
-
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 -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
Sur d’autres sites (12414)
-
starting and stopping the ffmpeg video capture within a C ++
29 août 2015, par yure albuquerqueIt is possible to start FFmpeg from inside a C ++ program and it sending a character ’q’ automatically according to the local time by exemple ?A command line would be to capture the desktop video.
ffmpeg -f dshow -i video=UScreenCapture output.mp4
(’q’ to quit)
I am trying the following code does not work more :
#include <iostream>
#define WINDOWS_LEAN_AND_MEAN
#include
#include
#include <iostream>
#include <thread>
#include <cassert>
#include
using namespace std;
enum { ParentRead, ParentWrite, ChildWrite, ChildRead, NumPipeTypes };
int main()
{
SECURITY_ATTRIBUTES sa;
sa.nLength = sizeof(sa);
sa.bInheritHandle = TRUE;
sa.lpSecurityDescriptor = NULL;
HANDLE pipes[NumPipeTypes];
if (!CreatePipe(&pipes[ParentWrite], &pipes[ChildRead], &sa, 0))
return 0;
if (!CreatePipe(&pipes[ParentRead], &pipes[ChildWrite], &sa, 0))
return 0;
// make sure the handles the parent will use aren't inherited.
SetHandleInformation(pipes[ParentRead], HANDLE_FLAG_INHERIT, 0);
SetHandleInformation(pipes[ParentWrite], HANDLE_FLAG_INHERIT, 0);
STARTUPINFO si;
ZeroMemory(&si, sizeof(STARTUPINFO));
si.cb = sizeof(STARTUPINFO);
//si.wShowWindow = SW_SHOW;
si.dwFlags = STARTF_USESHOWWINDOW;
si.dwFlags |= STARTF_USESTDHANDLES;
// si.dwFlags = STARTF_USEHOTKEY;
si.hStdOutput = pipes[ChildWrite];
si.hStdError = pipes[ChildWrite];
si.hStdInput = pipes[ChildRead];
//si.hStdInput = stdout;
PROCESS_INFORMATION pi;
ZeroMemory(&pi, sizeof(PROCESS_INFORMATION));
TCHAR cmd[] = "ffmpeg -f dshow -i video=UScreenCapture output.mp4";
if (!CreateProcess(NULL, cmd, NULL, NULL, TRUE, CREATE_NEW_CONSOLE, NULL, NULL, &si, &pi))
return 0;
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
Sleep(20000);
cout<<"End"</stop process(failure)
CloseHandle(pipes[ChildRead]);
CloseHandle(pipes[ChildWrite]);
CloseHandle(pipes[ParentWrite]);
CloseHandle(pipes[ParentRead]);
return 0;
}
</cassert></thread></iostream></iostream> -
Organic Traffic : What It Is and How to Increase It
19 septembre 2023, par Erin — Analytics Tips -
ffprobe : fix XML rendering, review XML layout
13 octobre 2023, par Stefano Sabatiniffprobe : fix XML rendering, review XML layout
Fix rendering of int values within a side data element, which was
broken since commit d2d3a83ad93, where the side data element was
correctly marked as a variable fields element. Logic to render a
string variable was implemented already, but it was not implemented
for the int fields path, which was enabled by that commit.Also, code and schema is changed in order to account for multiple
variable-fields elements - such as side data, contained within the
same parent. Previously it was assumed that a single variable-fields
element was contained within the parent, which was the case for tags,
but is not the case for side-data.Previously data was rendered as :
<side_data_list>
<side_data side_data_type="CPB properties" max_bitrate="0" min_bitrate="0" avg_bitrate="0" buffer_size="327680" vbv_delay="-1"/>
</side_data_list>Now as :
<side_data_list>
<side_data type="CPB properties">
<side_datum key="side_data_type" value="CPB properties"/>
<side_datum key="max_bitrate" value="0"/>
<side_datum key="min_bitrate" value="0"/>
<side_datum key="avg_bitrate" value="0"/>
<side_datum key="buffer_size" value="49152"/>
<side_datum key="vbv_delay" value="-1"/>
</side_data>
</side_data_list>Variable-fields elements are rendered as a containing element wrapping
generic key/values elements, enabling use of strict XML schema.Fix trac issue :
https://trac.ffmpeg.org/ticket/10613- [DH] Changelog
- [DH] doc/ffprobe.xsd
- [DH] fftools/ffprobe.c
- [DH] tests/ref/fate/ffprobe_xml
- [DH] tests/ref/fate/ffprobe_xsd
- [DH] tests/ref/fate/flv-demux
- [DH] tests/ref/fate/gapless-mp3-side-data
- [DH] tests/ref/fate/mov-aac-2048-priming
- [DH] tests/ref/fate/mov-zombie
- [DH] tests/ref/fate/oggopus-demux
- [DH] tests/ref/fate/ts-demux
- [DH] tests/ref/fate/ts-opus-demux
- [DH] tests/ref/fate/ts-small-demux
- [DH] tests/ref/fate/ts-timed-id3-demux