
Recherche avancée
Autres articles (50)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (8800)
-
How to record RTSP to mp4 10 mins segments directly into FTP server
31 octobre 2022, par HridyanshNarwal888I want to record a tcp RTSP stream in 10mins segments continuously which can be done with ffmpeg but i don't have enough storage on the actual device and i have many space on my FTP server


and i have no idea how to do it i've tried some codes which are recording it perfectly but cant sync to ftp at the same time


here the older code that i'm using


ffmpeg -rtsp_transport tcp -i rtsp://192.168.1.3:10554/tcp/av0_0 -f mp4 -t 60 ftp://my_ftp_url/%Y-%m-%d/%H-%M-%S.mp4

but it gives the error

[mp4 @ 0x144ae00] muxer does not support non seekable output Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument Error initializing output stream 0:0 -- Conversion failed! exit status 1


If this is not possible in this language or through ffmpeg then I've no problem to change language or packages.


Thanks in advance


-
What’s So Hard About Building ?
10 septembre 2011, par Multimedia Mike — ProgrammingI finally had a revelation as to why so building software can be so difficult– because build systems are typically built on programming languages that you don’t normally use in your day to day programming activities. If the project is simple enough, the build system usually takes care of the complexities. If there are subtle complexities — and there always are — then you can to figure out how to customize the build system to meet your needs.
First, there’s the Makefile. It’s easy to forget that the syntax which comprises a Makefile pretty well qualifies as a programming language. I wonder if it’s Turing-complete ? But writing and maintaining Makefiles manually is arduous and many systems have been created to generate Makefiles for you. At the end of the day, running ‘make’ still requires the presence of a Makefile and in the worst case scenario, you’re going to have to inspect and debug what was automatically generated for that Makefile.
So there is the widespread GNU build system, a.k.a., “the autotools”, named due to its principle components such as autoconf and automake. In this situation, you have no fewer than 3 distinct languages at work. You write your general build instructions using a set of m4 macros (language #1). These get processed by the autotools in order to generate a shell script (language #2) called configure. When this is executed by the user, it eventually generates a Makefile (language #3).
Over the years, a few challengers have attempted to dethrone autotools. One is CMake which configures a project using its own custom programming language that you will need to learn. Configuration generates a standard Makefile. So there are 2 languages involved in this approach.
Another option is SCons, which is Python-based, top to bottom. Only one programming language is involved in the build system ; there’s no Makefile generated and run. Until I started writing this, I was guessing that the Python component generated a Makefile, but no.
That actually makes SCons look fairly desirable, at least if your only metric when choosing a build system is to minimize friction against rarely-used programming languages.
I should also make mention of a few others : Apache Ant is a build system in which the build process is described by an XML file. XML doesn’t qualify as a programming language (though that apparently doesn’t stop some people from using it as such). I see there’s also qmake, related to the Qt system. This system uses its own custom syntax.
-
ffmpeg filtre ocr and ocv
21 août 2016, par user3689259i want to know how to use Filtre ocr and ocv , on FFmpeg . i dont find any doc for the 2 filter ffmpeg .
this is doc on ffmpegOptical Character Recognition
This filter uses Tesseract for optical character recognition.
It accepts the following options:
datapath
Set datapath to tesseract data. Default is to use whatever was set at installation.
language
Set language, default is "eng".
whitelist
Set character whitelist.
blacklist
Set character blacklist.
The filter exports recognized text as the frame metadata lavfi.ocr.text.