
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (74)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (...)
Sur d’autres sites (11273)
-
FFmpeg - Low/unstable encoding speed
12 février 2023, par ErwanTrying to transcode two streams into one gives me poor/unstable encoding speeds from
x0.400
tox0.988
, sometimes abovex1
.

fmpeg \
 -thread_queue_size 15 -rtbufsize 100M -i "https://.../stream.m3u8" \
 -thread_queue_size 15 -rtbufsize 100M -i "http://.../video.mjpg" \
 -filter_complex \
 "[0:v]setpts=PTS-STARTPTS [bg]; \
 [1:v]scale=200:-1,setpts=PTS-STARTPTS [fg]; \
 [bg][fg]overlay=W-w-10:10" \
 -c:v mpeg1video \
 -b:v 1000k \
 -r 25 \
 -threads 1 \
 -f mjpeg udp://127.0.0.1:1235?pkt_size=1316



Hardware specs :


- 

- CPU is Intel Core 2 Duo
- Mechanical hard drive






I choose the mpeg1video encoder because of the low CPU usage. It seems that my Core 2 Duo can't keep up with libx264 .


I played with output bitrates, fps and threads,
-re
but nothing seems to improve and stabilize encoding speed tox1
. Which parameters do I need to change/add/remove to achieve a reliablex1
encoding speed ?

Input streams are not reliable, download internet connection is slow and unreliable.


-
dnn-layer-mathunary-test : add unit test for abs
25 mai 2020, par Ting Fu -
ffmpeg : How to change video duration (slow-down or speed-up) to exact value ?
2 février 2017, par MooI have miltiple videos with different durations and need to always set it to be exactly 10 seconds.
I know that I can use
-filter:v "setpts=speed*duration"
but is there any way to make a universal one-line function to convert any-duration video to 10 seconds video ?