
Recherche avancée
Autres articles (106)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...)
Sur d’autres sites (14893)
-
Redirecting output to different path
9 septembre 2020, par user14245857this is probably a quite easy question. I tried to solve it myself, looking at a whole bunch of different sites but couldn't find an answer.


Here it is : Change the variable "$output" so the output file of ffmpeg is written in a DIFFERENT directory than the current directory where the input files are.


Code is as follows :


$inputfiles = ls *.mxf

 foreach ($file in $inputfiles)
 
{$output = [io.path]::ChangeExtension($file, '.mp4')

 ffmpeg -i $file -map 0 -c:v libx264 -c:a aac $output}



Looking forward to your answers


Thank you very much in advance


-
Windows FFMPEG : Open Icecast Stream and output Metadata / "icy_metadata_packet" continuously
6 octobre 2017, par HenryI managed to open a mp3 stream and save it to 6-second-files continuously.
What I can’t find is a way to save the song titles to a file or output them.
I came across "icy_metadata_packet" which should do exactly what I need but it is not well-documented as it seems. Can I use that option in the command line as an option or do I need a script of some sort to put this value somewhere ?
If so, what’s the easiest way/language for a script like this ? (maybe a .bat file ?)Thanks in advance for your help !
-
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.