
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (32)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (5725)
-
FFmpeg returning error when obs studio tries to enable NVENC
20 octobre 2022, par Qwerty_PLMApparently the error in obs is "Failed to open NVENC codec : generic error in an external library". I'm using ffmpeg nvenc encoder. the log shows the following lines.


[h264_nvenc @ 0x56341a8cdf40] The selected preset is deprecated. Use p1 to p7 + -tune or fast/medium/slow.
[h264_nvenc @ 0x56341a8cdf40] OpenEncodeSessionEx failed: out of memory (10): (no details)
[h264_nvenc @ 0x56341a8cdf40] No capable devices found



When I run
nvidia-smi
, the result is below

-----------------------------------------------------------------------------+
| NVIDIA-SMI 520.56.06 Driver Version: 520.56.06 CUDA Version: 11.8 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|===============================+======================+======================|
| 0 NVIDIA GeForce ... Off | 00000000:01:00.0 Off | N/A |
| N/A 54C P5 21W / N/A | 58MiB / 8192MiB | 26% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
 
+-----------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=============================================================================|
| 0 N/A N/A 5595 G /usr/lib/Xorg 12MiB |
| 0 N/A N/A 15882 G obs 44MiB |
+-----------------------------------------------------------------------------+




My environment :


- 

- Arch linux with kernel 6.0.2
- RTX 3070 laptop
I hope to find an solution to allow me to use nvenc encoding for recording videos.






Software encoding does work, but I'm using a laptop cpu which provides poor performance.


UPD : applying the patch from
https://github.com/keylase/nvidia-patch
worked but I want to know why it didn't work before because I've never run any process that uses nvenc, and the patch only enables multiple nvenc sessions.

-
Problems linking to FFMPEG library in Visual Studio 2010
11 décembre 2013, par Dídac PérezI have cross-compiled FFMPEG from Debian using the mingw32 toolchain. The result of the compilation is a set of .a files. When I try to use them in my project I get linker errors, concretely the following ones :
1>RTSPCapture.obj : error LNK2019: unresolved external symbol _avformat_free_context referenced in function ...
1>RTSPCapture.obj : error LNK2019: unresolved external symbol _avio_close referenced in function ...
1>RTSPCapture.obj : error LNK2019: unresolved external symbol _avcodec_close referenced in function ...
(and much more...)I have already included the header files like this :
extern "C"
{
#include <libavcodec></libavcodec>avcodec.h>
#include <libavformat></libavformat>avformat.h>
#include <libavformat></libavformat>avio.h>
}And I use the .a files like this :
#pragma comment(lib, "libavcodec.a")
#pragma comment(lib, "libavformat.a")
#pragma comment(lib, "libavutil.a")May I know why I am still getting linker errors ? Best regards,
EDIT : I have realized that this is not possible. So, what should I do to use FFMPEG library in my MSVC2010 project taking into account that I can't compile ffmpeg in Windows ? it seems to be REALLY difficult...
-
Android : How to configure FFMPEG latest version in android studio ?
28 décembre 2016, par Ravi VaghelaI want to configure
FFMPEG
in android studio but i cant get any document or link for that. Github on manyFFMPEG
lib available for android but that all are with old version. And how to run command in android ? and i want to know after configureFFMPEG
then how can we runFFMPEG
commands. Help me for that. thanks advance.I have used below links but not success in for latest version.
http://writingminds.github.io/ffmpeg-android-java
https://github.com/WritingMinds/ffmpeg-android-java
https://github.com/havlenapetr/FFMpeg