
Recherche avancée
Autres articles (21)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (5620)
-
Documentation #3972 (En cours) : template variants and possible bug ?
5 juillet 2017, par Kamran Mir HazarHello,
The following template variants do not work for me :
I have section number 101, with articles in fa and en languages in it.
I have also files article.html for the main site’s language which is fa, and article.en.html for the en language articles. Both work fine in general. I created two other variants to apply articles in section 101 with two separate languages. They are : article=101.fa.html and article=101.en.html .
SPIP ignores these two variants and proceeds article.html for fa language articles, and article.en.html for en language articles in section 101, like the other sections. I added also article=101.html to see if it works, but didn’t.
I asked this in French and English mailing lists, but couldn’t find any solution.
Thank you
KamranPS : I tried based of the following article :
https://www.spip.net/en_article4363.html -
I cant give names to subtitle tracks with ffmpeg
11 mai 2023, par KelesIm using this command to add 2 audio tracks (mixed with original audio) and 2 subtitles tracks to the original video :




ffmpeg -i input_video.mp4 -i audio_track_1.wav -i audio_track_2.wav -i
srt_file_es.srt -i srt_file_en.srt -filter_complex
"[0:a][1:a]amerge=inputs=2[a1] ;[0:a][2:a]amerge=inputs=2[a2]" -map 0:v
-map "[a1]" -metadata:s:a:0 language=spa -metadata:s:a:0 title="Spanish" -map "[a2]" -metadata:s:a:1 language=eng
-metadata:s:a:1 title="English" -c:v copy -c:a aac -ac 2 -b:a 96k -c:s mov_text -metadata:s:s:0 language=spa -metadata:s:s:0 title="Spanish"
-metadata:s:s:1 language=eng -metadata:s:s:1 title="English" output_video.mp4




Everything works fine but the subtitles names are "Track 1" and "Track 2". The following part is not working :




metadata:s:s:0 title=




-
How to implement Clear-Key video encryption in PHP and play it in HTML [closed]
22 octobre 2018, par Ali FarhoudiI want to implement video encryption in
php
and play encrypted video in HTML5 video. I have read some documents about it :And I know there are alternative tools and services that I can use :
- https://support.uplynk.com/tut_embedding_the_uplynk_player_3.html
- https://www.wowza.com/products/capabilities/streaming-content-security
- https://www.intertrust.com/products/drm-system/livestream/
- https://bitmovin.com/cenc-widevine-drm/
- https://www.html5rocks.com/en/tutorials/eme/basics/
I want to provide like this example :
- https://demo.castlabs.com/ (play big buck bunny smooth streaming : that can’t be downloaded and the url is one-time usable)
What steps should I pass ?
I use PHP (laravel) in server-side.