
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (93)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (11378)
-
mid-roll ads in HLS or mpeg-dash
21 février 2017, par evanI’m encoding my videos with ffmpeg and transcoding them into HLS videos. I want to add mid-roll ads to my converted videos.
I was wondering what is the best way to do it ? should I just add the ads to my video and make a big video stream and then do the HLS thing ? or I should break the HLs video and put the ads in the middle while playing ?
My content is live streaming and I want to add mid-roll ads in the middle of my video while playing.
ffmpeg -i main720.MTS -movflags faststart -s 640*360 -r 24 -vcodec libx264 -preset slow -tune zerolatency -tune fastdecode -b:v 300k -maxrate 300k -bufsize 400k -g 96 -an hls3/main720_300.mp4 -s 1280*720 -r 24 -vcodec libx264 -preset slow -tune zerolatency -tune fastdecode -b:v 700k -maxrate 700k -bufsize 1000k -g 96 -an hls3/main720_700.mp4 -hls_time 4 -hls_segment_filename 'hls3/file%03d.ts' -hls_list_size 0 hls3/out.m3u8
-
How to convert a continuously growing MXF file into DASH format
10 octobre 2020, par DamianI am trying to find a way to convert MXF files in chunks rather than use the whole file. The purpose of this is because I have a continuously growing MXF. I am using ffmpeg for conversion and I already have the working commands for the whole file. Say I have the following : Scenario :


> 1. Header Partition
> 2. Body Partition-1
> 3. Body Partition-2
> 4. Body Partition-3
> 5. Footer Partition
> 6. RIP



Can I split this into 2 or 3 other files and convert them separately or is this impossible to achieve ? Or maybe find another way around of converting MXF inside a stream ?


-
Convert ismv to mpeg-dash with node js
20 février 2017, par MBajor13I’m trying stream live video from ip camera to HTML 5 video teg.
I encoding stream with ffmpeg. The comand is.$ ffmpeg -rtsp_transport tcp -an -i "rtsp://192.168.1.10:554/user=admin&password=&channel=1&stream=0.sdp" -f mp4 -reset_timestamps 1 -movflags isml+empty_moov+default_base_moof -g 30 -probesize 200000 "http://localhost:1313/mediasourse.isml/stream1"
Then I resive the date in node.js server and send them to users whith WebSocket.
The issue is that the search bar in video teg remain on the same plase.I notice that mp4box except "moof" and "mdat" atoms adds "styp" and "sidx" atoms in each segment. "moov" atom is also different. But I don’t know what exactly I nead to edite.
Thanks.