
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (72)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (10327)
-
FFMPEG-PHP converted videos don't work on mobiles
16 avril 2018, par casusbelliI’m working on a upload script where users can upload videos however I’m having an issue with FFMPEG-PHP : The converted videos don’t work on mobiles while they are working fine on desktop.
//FFMPEG Instance
require_once '/root/vendor/autoload.php';
$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open($temp_path);
//WEBM Convert
$format_webm = new FFMpeg\Format\Video\WebM();
$video->save($format_webm, 'video.webm');
//MP4 Convert
$format_mp4 = new FFMpeg\Format\Video\X264();
$format_mp4->setAudioCodec("libmp3lame");
$video->save($format_mp4, 'video.mp4');Fatal error : Uncaught
Alchemy\BinaryDriver\Exception\ExecutionFailureException : ffmpeg
failed to execute command ’/usr/bin/ffmpeg’ ’-y’ ’-i’
’/var/www/html/v/temp/13759.mp4’ ’-vcodec’ ’libx264’ ’-acodec’ ’aac’
’-b:v’ ’1000k’ ’-refs’ ’6’ ’-coder’ ’1’ ’-sc_threshold’ ’40’ ’-flags’
’+loop’ ’-me_range’ ’16’ ’-subq’ ’7’ ’-i_qfactor’ ’0.71’ ’-qcomp’
’0.6’ ’-qdiff’ ’4’ ’-trellis’ ’1’ ’-b:a’ ’128k’ ’-pass’ ’1’
’-passlogfile’
’/tmp/ffmpeg-passes5ad4e29d1b71e6oveh/pass-5ad4e29d1b7b2’
’/var/www/html/v/13759.mp4’ in
/root/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessRunner.php:100\nStack
trace :\n#0
/root/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessRunner.php(72) :
Alchemy\BinaryDriver\ProcessRunner->doExecutionFailure(’’/usr/bin/ffmpe...’)\n#1
/root/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/AbstractBinary.php(209) :
Alchemy\BinaryDriver\ProcessRunner->run(Object(Symfony\Component\Process\Process),
Object(SplObjectStorage), false) in
/root/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/Video.php on line
109Any help ?
-
ffmpeg : change command line option -dump to work without -loglevel debug
10 décembre 2015, par Tom Marecekffmpeg : change command line option -dump to work without -loglevel debug
hex and -dump command line options do nothing unless -loglevel debug is set.
dump by itself is useful for monitoring live streams (to get the current PTS for example) however when it is used with -loglevel debug for an RTMP stream, librtmp also dumps the packet data which makes the output too noisy.
do_pkt_dump is only set in check_keyboard_interaction or by the -dump command line option so this change should have no effect on any other parts of the code..
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
Why this simple video streaming scheme does not work ?
8 août 2014, par Vi.I’ve tried setting up simple webm video streaming scheme, based on ffserver and
<video></video>
element :# relevant part of ffserver.conf
<stream>
Feed feed1.ffm
Format webm
VideoFrameRate 15
AVOptionVideo flags +global_header
VideoSize 640x480
VideoCodec libvpx
VideoBitRate 800
NoAudio
</stream>
# ffmpeg command line
ffmpeg -f rawvideo -s 640x480 -i /dev/zero -vb 100000 http://vsodo.vi-server.org:8090/feed1.ffm
# video element
<video controls="controls" autoplay="autoplay">
<source src="http://vsodo.vi-server.org:8090/feed1.webm" type="video/webm"></source>
Your browser does not support the video tag.
</video>But it works only in few cases :
- luakit - works (uses GStreamer) ;
- uzbl - works ;
- Firefox - fails (at least in versions 17, 24 and 26 and 31) ;
- Chromium 31.0.1650.63 - fails ;
- Google Chrome 27.0.1453.93 - fails ;
- Built-in browser in Android 2.3 - fails.
Failing browsers usually show the video length and the fact that there’s no audio track, but the video area stays black, not green as expected.
This page lists "Partial support" or "Supported" for webm and video element. Usual players like VLC or
mplayer
work if specifyhttp://vsodo.vi-server.org:8090/feed1.webm
to them. Example video page also works (except of on Android 2.3).Why it can fail ? How do I troubleshoot browser-specific the
<video></video>
problems ?