
Recherche avancée
Autres articles (103)
-
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 (12208)
-
How to remove all metadata but keep audios and subtitles in ffmpeg ?
6 décembre 2020, par hun1030I would like to removes all metadatas using ffmpeg, but keep every single audio and subtitle name. I have a code which works perfectly fine but it remove the audio and subtitle name (original subtitle name "English [eng] (subrip)" after i use the code "subrip").


bat file :


echo off
mkdir outputs
for %%a in ("*.mkv") do ffmpeg -i "%%a" -map_metadata -1 -map 0:a? -map 0:s? -map 0:v -c:v copy -c:a ac3 -c:s copy "outputs\%%~na.mkv"
pause



-
FFmpeg, Icecast and ice_name in Cyrillic
6 juin 2021, par Alexandr KuznetsovSorry for my English, I hope you can understand me.


To set stream names (-ice_name), I need to use Cyrillic characters. But on Icecast server I get hieroglyphs.


If I use software other than ffmpeg, then everything is displayed fine. But I need to use ffmpeg exactly.


Here's the source :


"c:\ffmpegrec\ffmpeg.exe" -i rtmp://... -fflags nobuffer -vn -c:a libmp3lame -b:a 192K -content_type audio/mpeg -f mp3 -ice_name "Имя стрима" -ice_description "Описание стрима" -ice_public 0 -password ... icecast://...



All this is run through a .bat file.


-
Input RTP stream to web html5 page ffmpeg
6 août 2013, par TommyI am working on school project and I need to transfere RTP from multicast IP and I would like play live stream on web page, preferrably in html5.
So far i have started recording stream with ffmpeg. And it only recording audio. I have output of ffmpeg.
Addtionaly if you have any good sulution to transfere rtp stream from multicast domain to web page so give your ideas.
Sorry for my english guys.
Thank you in advance.