
Recherche avancée
Autres articles (109)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (14715)
-
lavf : add SFTP protocol via libssh
18 septembre 2013, par Lukasz Marek -
suggestions for using protocol to stream images
10 décembre 2013, par Abdul AliThe target is that a user sends a stream of images to a server. The server should forward those to a media server for showing as a live continuous video to clients.
following are the thought for implementing, kindly tell if they are ok.
Use a lightweight rtmp server to accept stream of images from a user (please suggest if this is even possible via rtmp and if it cab be easiy and efficiently done otherwise)
use ffmpeg to use the rtmp (or other) url as input and send those images to ffserver for streaming. (am also confused here, if ffserver is fed with images continuosly, can it show those images as video as long as the images are coming)
-
Using FFmpeg concat filter instead of protocol, differrent results [duplicate]
18 novembre 2015, par f.rodriguesThis question already has an answer here :
-
Concatenate two mp4 files using ffmpeg
8 answers
I have two files that need to be merged.
I can do this using the ffmpeg concat protocol
creating a text file and setting the files in there.
Like so :
files_to_be_merged.txt
file '/home/user/Videos/video1.mov'
file '/home/user/Videos/video2.mov'and them using the following command.
ffmpeg -f concat -i mylist.txt -c copy output.mov
But I want to do that without having to create a text file.
I tried this command :
ffmpeg -i 'concat:video1.mov|video2.mov' -codec copy output.mov
But the resulting file is just the first video, not both together.
I get this warning while doing this command ;
[mov @ 0x35933c0] Codec for stream 0 does not use global headers but
container format requires global headers[mov @ 0x35933c0] Codec for stream 1 does not use global headers but
container format requires global headers -
Concatenate two mp4 files using ffmpeg