
Recherche avancée
Autres articles (80)
-
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 (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (10689)
-
Is there any way to concatinate multiple video and audio streams with offset ?
17 avril 2019, par Demchenko OlegI am sory for my english, it is not my mother language. My issue related to ffmpeg concatenation of audio and video streams. There are multiple audio and video streams which were recorded by online chat. All of them have start and end time points. If user turned off a micro or camera then audio and video streams wouldn’t be matched. How can I align all streams in one time series ? Can I add some white noise to separate the two videos ? Similar with audio.
-
A good Library for video processing
24 février 2015, par user3397178I am going to work on videos. Different kind of processing, detection and recognition can be involved. I already know about some of the famous libraries such as OpenCV, ffmpeg, moviepy. The language programming is not a big deal. I am really thankful if you introduce me a fast, efficient and convenient library which you have already used for video processing and object detection from video.
Any suggestion would be appreciated.
Bests, -
Use FFmpeg or ffplay as a library, instead of calling exe
13 septembre 2023, par San ZhangMy ultimate goal is to be able to play a RTSP stream(h264) in a native window(Windows VC++) in my application, using FFmpeg, but without calling any exe, rather, use FFmpeg as a library that's linked with the application as part of it.


This answer gave me some ideas :
https://stackoverflow.com/a/3167088/3842917


My first approach was to build ffplay into a library and link it to my application. However I am running into problems with building ffplay. (I have posted a separate question for it. )


My second, and less preferred approach, is to find out how to decode and play the stream using their API calls that are built into libraries(DLL's), so that I can avoid calling ffmpeg.exe. The problem with this approach is I'd have to understand the process of dealing with a raw video stream, something I'm not very familiar with.


Is there any other approach I can achieve what I need ?