
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (106)
-
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)
Sur d’autres sites (11960)
-
MPEG DASH : Playing video segments from .m4s files instead of byte ranges in the MPD File using Simple DASH Player
1er novembre 2018, par TrycoderI have followed the tutorial from the link below to create an MPEG DASH player using HTML5 and javascript.
Building a simple MPEG dash player using HTML5 and JS.In the given tutorial, it is possible to play the video segments using byte ranges. But for my application, I need the following features.
- The video player should read the .m4s segment files and play the video instead of byte ranges.
- The amount of data in the MediaSource buffer should be calculated periodically, also the amount of space left in the buffer.
Are these possible in the given player or Is there a better MPEG DASH Player with the above features ?
PS : The MPD File is created using FFmpeg.
ffmpeg -f avfoundation -video_size 1280x720 -framerate 30 -i 0 -vcodec libx264 -acodec aac -b:v 800k -f dash -use_template 0 -min_seg_duration 4000 -single_file 1 -start_at_zero -live 1 ffmpeg.mpd
Also, I tried using the DASH.js player but the documentation is very vast in it. Can we get the size of the source buffer in dash.js (The space available in the source buffer and also the amount of space filled) ? This is the main feature which is required for my project.
Edit :
Code which I tried -
my own tv news channel - using vlc streaming
6 janvier 2015, par SledgehammerPLI want to create my own tv channel (using vlc streaming).
And for now - it works great :cvlc --sout-keep --loop --sout '#standard{access=http,mux=ts,dst=:2000}' file.avi
But i have two problems :
1st : how to make a playlist, which i can modify without breaking the streaming (I thought about playlist with file1.avi- file10.avi, which all are symlinks, so when i’m sure, that file2 is playing, I can change symlink for file1 -but maybe there is something beter ?
2ns : I want to add logo, and news ticker - adding logo is quite easy, but ticker looks hard : for now i know, that I have to use transcode sfilter, something likecvlc --sout-keep --loop --sout '#transcode{soverlay, sfilter=marq{marquee="$N$_$T$_$D", position=5, size=14, opacity=255}, vb=600, vcodec=h264, venc=x264{bpyramid=none, weightp=0}}:standard{access=http,mux=ts,dst=:2000}' film.mp4
but the problem is that ticker doesn’t move - it changes, but not move
And I think if I can add logo twice - with ticker between logos - i think about layers :
1. movie
2. ticker background
3. ticker text
4. ticker frame (because i don’t want to scroll text from border to border)Any ideas ?
-
Audio Slowly Desynchronizing When Segmenting
14 avril 2018, par NimbleI use ffmpeg’s ability to segment video while I record so I can record constantly without my hard drive filling up.
It works really well, expect the audio desynchronizes from the video when the file segments. The video seems to be uninterrupted but I can actually hear a tiny jump in the audio when I join segments later on. One would think that ffmpeg would store packets in a queue during segmentation so nothing is lost but that doesn’t seem to be the case... Any way I could force it to do something like that ?
Here is my current block :
ffmpeg -y -thread_queue_size 5096 -f dshow -video_size 3440x1440 -rtbufsize 2147.48M -framerate 100 -pixel_format nv12 ^
-itsoffset 00:00:00.012 -i video="Video (00 Pro Capture HDMI 4K+)" -thread_queue_size 5096 -guess_layout_max 0 -f dshow ^
-rtbufsize 2147.48M -i audio="SPDIF/ADAT (1+2) (RME Fireface UC)" -map 0:0,1:0 -map 1:0 -c:v h264_nvenc -preset: llhp ^
-pix_fmt nv12 -b:v 250M -minrate 250M -maxrate 250M -bufsize 250M -b:a 384k -ac 2 -r 100 -vsync 1 ^
-max_muxing_queue_size 5096 -segment_time 600 -segment_wrap 9 -f segment C:\Users\djcim\Videos\PC\PC\PC%02d.mp4I am delaying the video stream because right out the gate it’s a little bit ahead of the audio.
PS : aresample or async seem to have no effect or at least not a desirable one.