
Recherche avancée
Autres articles (44)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (4563)
-
How to convert a seems like NV21 rtsp stream to normal YUV420 rtmp stream ?
22 décembre 2018, par N.MonsterI tried to push a live stream from H264 Encode Box(Based on Hi3516)
to Bilibili using ffmpeg command line tool, but got a totally green picture.(It is all right when I push it to my local rtmp server.)After searching, i got that the problem may lies in the U and V in YUV420, or NV12 and NV21.The remote server identifies error.
I previously use
-vcodec copy
After change to
-vcodec h264
Everything go well. But cost CPU to much. Emm Re-encoder ? I don’t need this.So how can I convert only pixel format locally before push steam , or just tell the server my pixel format as to get a color correct picture ?
-
nginx video mp4 streaming - jwplayer seeking
18 juin 2012, par abrahabAs you can see nginx streaming solution works and return different content-length when
flv
requested withstart
parameter :
http://www.hotgirlscompany.com/1.flv?start=0
http://www.hotgirlscompany.com/1.flv?start=300000But the problem that jwplayer v5 can not seek this video to any position. Seems (from http sniffer) player request
?start=0
and then ignore any mouse clicks at loading line, and can not go to position I want).Of course, I added
provider=http
toflashVars
.
You can download the video and see that its converted as H.264/AAC. Then makedmp4box -inter 500 1.flv
. But still can not steam it :(Any suggestions ?
Maybe example how to property reconvert this video with ffmpeg to make it playable ? -
How to stream a wmv file as an mp4 file (convert on the fly) over HTTP using ffmpeg or something similar ?
8 juin 2016, par Adam TalI understand it’s not possible to use the tag to play a WMV file.
I thought about the following solution :
- Streaming a video means sending small chunks of frames and sound
- Reading a wmv file in chunks is surely possible
- An html video tag can receive chunks in an mp4/webm/ogg format and display it
Can I read a WMV file as a
Steam
and convert in on the fly to output it as if it was an MP4 file ?Few points :
- The technology is not really important. I just have a problem I need to solve.. I would prefer a solution in C# or node.js because those are environments I’m comfortable with but anything else will do.
- I will be happy to stream the file from a different server as wmv and output it as mp4 but I’m also able to download the file completely to my server and stream it from the local hard drive.
- The mp4 output is not a must. It can also be webm or ogg (just need the video tag to support it)