
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (14)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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 (2967)
-
Incorrect Codec Parameters While using '-acodec' option while Working with FFMPEG
14 avril 2015, par Bilal Ahmed YaseenI am working with FFMPEG Library. I am capturing streams in particular compression codes to the destination file with the specified format with the following command :
ffmpeg -i rtsp://username:password@server-ip/filename -acodec adpcm_ms -t 10 -f mp3 C:\FFMPEG_Recordings\ADPCM_10.mp3
I am getting the following the error :
Could not write header for output file #0 (incorrect codec parameters ?): Error number -22 occurred
So, when I specify some other file format against ’-f’ option this executes normally. Such as :
ffmpeg -i rtsp://username:password@server-ip/filename -acodec adpcm_ms -t 10 -f mov C:\FFMPEG_Recordings\ADPCM_10.mp3
So, when I specified ’mov’ against ’-f’ option It works fine and It captures the streams in media file of ’mp3’ format.
I am unable to understand that why I am getting this error ? and why I have to specify ’mov’ against ’-f’ format while I want to capture streams in ’mp3’ file format ?
-
H.264 encoding using FFMPEG - some videos not working
19 juin 2013, par BenCan anybody provide their 'most robust' FFMPEG command line for encoding to H.264 ? We've tried a few but some videos do not want to play ball. I'm sorry, I don't have the exact errors on hand - was just hoping to get somebody else's command line, before I spend time trying to work out exactly which type of videos aren't encoding, or why.
Thanks heaps.
-
FFMPEG is not working centos linux server
18 mars 2015, par UserI am using FFMPEG for video thumbnails creation,
I have downloaded FFMPEG (ffmpeg-2.4.2.tar.bz2) and installed in server.
located in
/usr/bin/ffmpeg
and used in this below code :
if($extension === 'mp4' OR $extension == 'MP4' )
{
$video = $timestamp.$imagename;
$videoname=substr($imagename,0, -4).$timestamp;
$image = "sites/default/files/content_images/{$videoname}-thumb.jpg";
var_dump($video);
$cmd="/usr/bin/ffmpeg -i /opt/lampp/htdocs/mydashboard/sites/default/files/content_videos/".$video." -ss 00:00:14.435 -f image2 -vframes 1 /opt/lampp/htdocs/mydashboard/sites/default/files/content_images/$videoname-thumb.jpg";
$cmdstr = $cmd;
$locale = 'en_IN.UTF-8';
setlocale(LC_ALL, $locale);
putenv('LC_ALL='.$locale);
echo exec($cmd);but this command not working as i expect..
$cmd="/usr/bin/ffmpeg -i /opt/lampp/htdocs/mydashboard/sites/default/files/content_videos/".$video." -ss 00:00:14.435 -f image2 -vframes 1 /opt/lampp/htdocs/mydashboard/sites/default/files/content_images/$videoname-thumb.jpg";
issue was video thumbnail is not created,when we upload videos.
any help great appreciation