
Recherche avancée
Autres articles (27)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (5995)
-
make webbased ffmpeg-live transcoder on linux for multiple streams
11 juillet 2017, par Dlniya DlzarHi I am planning to make webbased ffmpeg-live transcoder on linux for multiple streams .
Using ffmpeg and ngnix-rtmp is the basic that i found and planning to do it
my plan is (Web interface for adding and modifying streams (name ,input,output..)
in database , database i mean (json file). and execute ffmpeg command depend on the JSON file (now one more thing i want to do , is to monitor streams based on
nginx-rtmp-module/stat.xsl
git https://github.com/arut/nginx-rtmp-module/blob/master/stat.xsl
and restart streams if there is problem , like no audio or picture
whats is best structure to do it ?? which language is good to do the proccess
is there any missing knowledges ?? is there any other better way in your mind ?? -
avcodec/snowdec : Maintain avmv buffer
14 août 2021, par Michael Niedermayeravcodec/snowdec : Maintain avmv buffer
This avoids reallocating per frame
Fixes : Assertion failure
Fixes : 36359/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SNOW_fuzzer-6733238591684608
Fixes : 38623/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SNOW_fuzzer-6098656512573440Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
FFmpeg php set image size thumbnail
3 février 2014, par user3262579$movie=new ffmpeg_movie(''.$url.'');
$duration = $movie->getDuration();
$uzanti = substr($url , -3);
$duration = date('i:s',''.$duration.'');
$framesay = $movie->getFrameCount();
$framerate = $movie->getFrameRate();
$framehesap = $thumb * $framerate;
$md5 = md5($url);
$frame = $movie->getFrame($framehesap);
$gd = $frame->toGDImage();
imagepng($gd,'../thumb/'.$md5.'.png');I want to set image size. I'm using ffmpeg as you see. how can I set thumbnail size ? (I want 220x130)