
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (105)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (11355)
-
Evolution #2006 (Fermé) : Intégration des types de documents xml d’Office 2010
8 mars 2011, par cedric -c’etait déjà supporté par SPIP 2.0.x ticket invalide car sans aucun début d’information sur un éventuel bug.
-
Optimizing FFmpeg/x264 Configuration for Ultra-Low Latency UDP Streaming [closed]
17 décembre 2024, par pourjourI'm implementing a real-time screen streaming application using FFmpeg's libraries (libavcodec, libavformat) with H.264 encoding and UDP transport. While I have basic low-latency settings in place, I'm looking to minimize latency as much as possible while maintaining reasonable quality.
Here's my current encoder configuration :


// Configure codec for low latency
codecContext->width = WIDTH;
codecContext->height = HEIGHT;
codecContext->time_base = AVRational{1, FPS};
codecContext->framerate = AVRational{FPS, 1};
codecContext->pix_fmt = AV_PIX_FMT_YUV420P;
codecContext->gop_size = 10;
codecContext->max_b_frames = 0;
codecContext->refs = 1;
codecContext->flags |= AV_CODEC_FLAG_LOW_DELAY;
codecContext->bit_rate = 3000000;

// x264 specific settings
av_opt_set(codecContext->priv_data, "preset", "ultrafast", 0);
av_opt_set(codecContext->priv_data, "tune", "zerolatency", 0);
av_opt_set(codecContext->priv_data, "delay", "0", 0);
av_opt_set(codecContext->priv_data, "profile", "baseline", 0);
av_opt_set(codecContext->priv_data, "x264opts",
 "no-mbtree:sliced-threads:sync-lookahead=0:rc-lookahead=0:"
 "no-scenecut:no-cabac:force-cfr", 0);



For network transport, I'm using MPEGTS over UDP :


QString url = QString("udp://%1:%2?pkt_size=1316").arg(targetAddress).arg(targetPort);



Current issues :


- 

- Still experiencing 200-300ms latency Some quality degradation with
fast motion Occasional frame drops




Questions :


- 

- Are there additional x264 options or FFmpeg settings I should
consider for reducing latency ?
- What are the optimal GOP and bitrate
settings for balancing latency vs quality ?
- Are there better muxer settings or alternative container formats I should consider ?
- How can I optimize the network transport settings (packet size, buffering,
etc.) ?
- Are there any tradeoffs I should be aware of with my current
configuration ?












-
how to install ffmpeg in microsoft fabric [closed]
15 juillet 2024, par MangoI am running a python script on Microsoft fabric notebook using the pydub library, which relies on external audio handling utilities like ffmpeg, to split MP3 files. The ffmpeg utility is not a Python package and must be installed separately in my environment. I use following code


import os

# Set the path to the ffmpeg binaries
ffmpeg_path = "/lakehouse/default/Files/Bronze/Model/test/ffmpeg"
os.environ["PATH"] += os.pathsep + ffmpeg_path

# Verify the PATH environment variable
print(os.environ["PATH"])

# Verify that the binaries are accessible
!ffmpeg -version



but I get error as


/usr/bin/sh: line 1: ffmpeg: command not found



How should I install ffmpeg in microsoft fabric ?