
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (56)
-
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (4983)
-
avconv : fix handling attachments in init_output_stream
23 mai 2016, par Anton Khirnov -
ffmpeg does not exit when pipe is closed ?
9 juin 2024, par ThomasIf this has already been brought up, I apologize. This is part of a software tuner package I am writing as a POC. It is used by Plex Media Server. For the most part, it works with good picture quality but leaves ffmpeg processes when the User clicks "Stop" or closes the browser, I assume plex is closing the socket and that ffmpeg is not erroring out, but I am not sure. this is part of a function where I pass in a TCP Client Network Stream.


TCPListener waits for a call, when it accepts one, it passes the network stream off to this function below. When the TCP Client disconnects, ffmpeg never exits, waitforexit never returns.


ffmpeg args :


-hide_banner -loglevel error -i {0} -c copy -f mpegts pipe:1



c#


string Arguments = string.Format(ffmpegStreamOptions, URL,Overlay);
 Process p = new Process();
 p.StartInfo.UseShellExecute = false;
 p.StartInfo.RedirectStandardOutput = true;
 p.StartInfo.RedirectStandardError = true;
 p.StartInfo.CreateNoWindow = true;
 p.StartInfo.FileName = "ffmpeg.exe"; // Replace with your executable path
 p.StartInfo.Arguments = Arguments;
 
 p.Start();
 var errorMemoryStream = new MemoryStream();
 var programTask = Task.WhenAny(
 p.StandardOutput.BaseStream.CopyToAsync(client_stream



),
p.StandardError.BaseStream.CopyToAsync(errorMemoryStream)
) ;


p.WaitForExit(); //stuck here after the connection is broken and never exits.



Any help would be appreciated
Thanks !


-
ffmpeg lossless conversion webm to mp4 produces file not visibile by winmediaplayer
22 juillet 2020, par DKLI have some webms (around 3 mb each) and I need to transform them in mp4, possibly using an RGB profile.
I need a true lossless conversion because I need to extract rgb info from the files to do further analysis.


On windows 10, I start ffmpeg from command line with


-crf 0 -preset veryslow -c:v libx264rgb



It works and produces mp4 with very good quality and a large dimension (3mb —> 50mb).
However, something is not right, this mp4s are only visible in VLC, windows media player report a generic error (no error code) that cannot play the file.
I got similar generic errors when processing these file in other applications too. Therefore, I suppose something went wrong with the conversion.


Can someone provide some insight on this ?


If not, can someone suggest a true lossless conversion from webm to mp4, possibly with an RGB profile ?


Thanks