
Recherche avancée
Autres articles (29)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (2499)
-
SECURITY UPDATE : Fixed cross-site scripting issue in redirect result page.
9 août 2012, par Sebastian Tschanm cors/result.html SECURITY UPDATE : Fixed cross-site scripting issue in redirect result page. Although setting HTML element content via innerHTML ignores script tags, it is possible to run arbitrary script code by using the onerror handler of img tags : result.html ? Setting the body content via (...)
-
Using subprocess to run multiple commands depending on the list for ffmpeg in python
25 février 2023, par 164257I'm trying to use subprocess to send some commands to ffmpeg. But I need to send different commands depending on how many items are in my list.


subs = ['https://example1.vtt', 'https://example2.vtt']
link = 'https://example.m3u8'



I tried doing this :


sub_list = []
for sub in subs:
 subtitles = "'-i' " + sub + " "
 sub_list.append(subtitles)
 result_subs = "".join(sub_list)



this makes the result_subs to be


'-i' example1.vtt '-i' example2.vtt 



then I run :


subprocess.run([ffmpeg, '-i', link, result_subs, '-vcodec', 'copy', '-acodec', 'copy', "test.mkv"])



but it gives me an error


-
How can I embed a .ts stream on my website, using m3u8 that works with HLS.js ?
20 décembre 2022, par AnonymousI have the URL of the stream that I wanted to embed on my website, using HLS.js but I can't because it has got the format of .ts (Transport Stream).


I have already tried VLC http streaming transconversion but it hasn't worked. If you consider using ffmpeg please let me know how you done it !


Here it is the stream : http://iptvfree1.com:7899/live :.cid.9b5190e69349237e/hGYOfCADiS/160


Sorry about my poor english,and my "noob" thinking about the topic. Thanks