
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (62)
-
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 (8343)
-
Kill all ffmpeg processes which open repeatedly c#
20 janvier 2018, par MinhLeei’m new to C# and i’m trying to create a tool based on ffmpeg to convert video.
As title, i did google search and find out many ways to kill ffmpeg process, but in my case, for example i got 10 videos, which means 10 ffmpeg processes will be created one by one. If i closed form during 1st video, 9 others will be created sequently in background.Is there any effective ways to stop ffmpeg to create process ?
-
/root/bin/ffmpeg : error while loading shared libraries : libtheoraenc.so.1 : cannot open shared object file : No such file or directory
12 février 2014, par Paksmy ffmpeg command gives error when I try to convert video format. I have installed ffmpeg manually as guided in this link https://trac.ffmpeg.org/wiki/CentosCompilationGuide. for above issue I have also checked http://unix.stackexchange.com/questions/34023/ffmpeg-error-while-loading-shared-libraries-libtheoraenc-so-1 but not able to resolve my issue.
My command is : /root/bin/ffmpeg -i /home/pulsebrk/public_html/beta/user_uploads/6/1148a008470721f06c8dc71efa70622f99799e91.avi -acodec libvorbis -ac 2 -ab 96k -ar 44100 -b 345k -s x /home/pulsebrk/public_html/beta/user_uploads/6/1148a008470721f06c8dc71efa70622f99799e91.ogv and error is : /root/bin/ffmpeg : error while loading shared libraries : libtheoraenc.so.1 : cannot open shared object file : No such file or directory
libtheroa version is : 1.1.1 please anyone drive me for above issue.
-
avformat_open_input causes exception on RTP stream open
3 avril 2014, par user3283475I'm trying to program a video player of the RTP stream. I'm using visual studio 2010. When avformat_open_input command is executed an exception is generated (ntdll.dll !774b70f4()). It works fine with normal file from disk(test.avi).
#include "stdafx.h"
#include
//zeranoe headers and libraries(DLLs also from zeranoe)
extern "C"
{
#include <libavcodec></libavcodec>avcodec.h>
#include <libavformat></libavformat>avformat.h>
}
#pragma comment(lib, "avcodec.lib")
#pragma comment(lib, "avformat.lib")
int _tmain(int argc, _TCHAR* argv[])
{
AVFormatContext *pFormatCtx=NULL;
//char* Filename="c:\\test.avi"; //if I use this there is no crash
char* Filename="rtp://239.255.42.42:5004";//if I use rtp I receive exception
int videoStream,i;
AVCodec *pCodec=NULL;
AVCodecContext *pCodecCtx=NULL;
avcodec_register_all();
av_register_all();
avformat_network_init();
unsigned int _expTime = 5000;
static const AVIOInterruptCB int_cb = {interrupt_cb, &_expTime};
// Open video file
if(avformat_open_input(&pFormatCtx, Filename , NULL,NULL)!=0)//ntdll.dll exception when I try to open rtp stream
return -1; // Couldn't open fileCan someone help me please ?