
Recherche avancée
Autres articles (99)
-
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 (...) -
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 -
À propos des documents
21 juin 2013, parQue faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
Document bloqué en file d’attente ?
Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)
Sur d’autres sites (8096)
-
libavcodec/proresdec2 : Setup qmat_chroma according to RDD36
19 août 2020, par Harry Mallon -
Live TV Stream to Android
8 mai 2016, par Hd DreamI am new user on stackoverflow.
I wrote you today to get answer and solution to my problem.
I have input stream come from vlc. I need that all android connected to my network can watch stream in live in the same time like an online channel tv.
I saw for this channelCode : Select all
www.canal2international.net/live.phpthere is a same ts file is generated for each 45 second.
I need to do the same but with a mp4 file that I insered on html5 video tag.
for that I tried to convert my input stream with this cmd on ffmpegCode : Select all
ffmpeg -i 192.168.1.10:8620 -c:v libx264 -profile:v baseline -c:a aac -ar 44100 -ac 2 -b:a 128k -f segment -segment_time 45 -segment_format_options movflags=+faststart -segment_list D :\live\play.m3u8 -segment_list_size 2 D :\live\watch%03d.mp4I’m not satisfied. I can’t insert m3u8 file in html5 video tag because android don’t read it and his content.
I tried another code that I can say little similar that the result of this page
Code : Select all
www.canal2international.net/live.phpCode : Select all
ffmpeg -i 192.168.1.10:8620 -hls_flags single_file D :\live\play.m3u8It generated two files, a ts and a m3u8.
I know that html5 video tag can read ts file. Maybe there is a solution somewhere.The second way I don’t like in this code is ts file don’t read in real time. When I read file it begin from the first encoding.
All android connected to my network must watch in real time !
I don’t know how to solve my problem that’s why I write in thie forum.
Thank you in advance for all your help !
-
Why Can't i view a few of my mp4 files in my .erb but can in html file ?
27 avril 2016, par Joseph McKenzieI have a site that I’m working on for a customer and the strangest thing is happening to me. I pull in a list of videos from a database table and it plays the video that I want it to, this all works fine.
For some reason some of the video files will not play in either chrome nor Firefox when viewing my page from an .erb file,but they will work in Microsoft edge. They will all work in an .html file though in all my browsers they are raw .264 files converted to mp4 via ffmpeg .
I would think if it was a file corruption it wouldn’t play fine in a .html file or Edge.
<% links[0,1].each do |links|%>-->
<% if links[1] == "Not_Watched"%>
<video width="320" height="240" controls="controls">
<source src="../videos/<%=links[0]%>" type="video/mp4">
</source></video>
<%end%>
<%end%>
get '/page1' do
thing1= database.execute("select * from thing1");
thing2= database.execute("select * from thing2")
links = database.execute("select * from links")
erb :page1, :locals => {:thing1=> thing1, :thing2=> thing2, :links => links}
endI had to change some of the code names up because i cant put up to much of this code online...... and there is a lot more I didn’t include because didn’t have anything to do with anything as far as I could imagine. If anyone thinks it could have a bearing ill post some of it but changed up so that I can