
Advanced search
Medias (1)
-
Rennes Emotion Map 2010-11
19 October 2011, by
Updated: July 2013
Language: français
Type: Text
Other articles (65)
-
Les autorisations surchargées par les plugins
27 April 2010, byMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
HTML5 audio and video support
13 April 2011, byMediaSPIP 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 (...) -
Support audio et vidéo HTML5
10 April 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
On other websites (8910)
-
ffmpeg color, size and amplitude
9 December 2017, by user266005Trying to get ffmpeg to create an audio waveform while being able to control the image size, color, and amplitude. I have tried this (and many variations) but it just returns unmatched " .
ffmpeg -i input -filter_complex "aformat=channel_layouts=mono,compand=gain=-3,showwavespic=s=1000x350,color=s=1000x350:color=A072FD” -frames:v 1 output.png
Thoughts?
-
Merge commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’
13 July 2015, by Michael NiedermayerMerge commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’
* commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’:
hevc_ps: make sure failing to decode an SPS always returns an errorConflicts:
libavcodec/hevc_ps.cSee: 15893adbdb6a7000f59207bcb88def6e7b4812b9
Merged-by: Michael Niedermayer <michael@niedermayer.cc> -
how to call avconv via shell_ exec in php?
8 January 2018, by Blurry Scriptwhen I call a command to convert video from console linux its all working, but when I call the same command from
shell_exec
in php, it gives no errors it returns nothing.even tough I added sudo
2>&1
to redirect the output, for example this command:$res = shell_exec("avconv -i film.mkv 2>&1");
echo $res //nothing
exit;