
Recherche avancée
Autres articles (75)
-
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
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 (...) -
Support audio et vidéo HTML5
10 avril 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 (...)
Sur d’autres sites (7433)
-
flac muxer : support reading updated extradata from side data
26 mai 2014, par Anton Khirnov -
how to convert any audio file to wav on server side with node.js [on hold]
9 juin 2014, par pufmaigremy dear stackoverflow
I spent hours looking for an efficient and pretty way to transcode audio on server side, and I found a lot of informations... actually too much informations.
Sox for Node.js looks fine but there are not so much documentation, I was unable to convert a mp3 to wav with it :
https://www.npmjs.org/package/sox
Then fluent ffmpeg sounds good but I have the feeling I will loose a lot of time to achieve my goal with it :
https://github.com/fluent-ffmpeg/node-fluent-ffmpeg
and then i found some more obscure stuff like those ones :
https://github.com/andrewrk/node-plan-transcode
https://github.com/benvanik/node-transcoding
I’m not sure it’s really the "stackoverflow spirit" but I’m asking you wich way would you choose to achieve my goal because I’m feeling lost in the codec jungle.
thanks in advance !! love :)
-
FFMPEG Merge two videos into one with side-by-side same quality output
15 février 2017, par Filip Kafo KaučiarikI´m already working on project with 3d video an i have problem,i got left and right channel of video a a ineed to merge it into side by side.I already read some blogs about this problem and i got this code :
ffmpeg -i avatar35l.avi -vf "movie=avatar35r.avi [in1]; [in]pad=1920*2:1080[in0]; [in0][in1] overlay=1920:0 [out]" avatar35sbs.avi
it works,but i got significant quality loss and i need a quality of output video same as input video,30fps,1080p,same lenght,i´m a new one to ffmpeg and i need a concrete example of that
Can anybody help me ?