
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (65)
-
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 (...) -
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 (6578)
-
Playback drops frames or stutter on good hardware [closed]
30 décembre 2023, par LemonekI'm planning to use TDARR and tring to prevent any issues before with (re)encoding. And I have stumbled on issue with one TV Show - recently I have downloaded refreshed old show but playback stutters on TV or drops frames (few frames every few secs - so video plays nicely but suddenly few frames are dropeed and then for next few secs it playsnicely - no issues with sound)


I guess this particular video has some options which causes issues or I dont know but here are some facts I have gathered (ffprobe -v quiet -print_format json -show_format -show_streams) :


- 

- The TV is capable of playing FullHD HECV 10bit smoothly https://pastebin.com/0efSGjk9
- Original video stutters https://pastebin.com/vvLn8y4a
- Converted video (QSV) stutters (linux/ffmpeg https://pastebin.com/XbazLEft
Below cutout part of script parameters for converting - $FPS is supplied as without it ffmpeg does not create I Frames but that is not a problem here)








-hide_banner -y -init_hw_device qsv:hw \
 -hwaccel qsv -hwaccel_output_format qsv \
 -i "$FILENAME_BACK" \
 -map 0:v:0 -map 0:a:0 \
 -c:v hevc_qsv -preset slow -global_quality 22 -g $FPS\
 -c:a copy \
 -movflags faststart "$FILENAME_OUTPUT"



- 

- Converted video (NVENC) plays nicely (win/handbrake) https://pastebin.com/HbBNMZvT




In the end I wish I could create "safe" parameters list which I will supply to TDARR and not to worry about issues while converting videos.


Forgot to mention - Hardware on which Im planning to mass encode has Intel proc with QSV capabilities - I'm not planning to encode on NV.


If needed - I can provide any other information.


-
Convert from webm to gif using FFMPEG with minimal loss in quality
27 novembre 2017, par Neo Heraklesso I want to convert all my webm files to gif but the quality degraded incredibly, there’s some barely visible lines along the picture, tried using crf to improve it but it doesn’t, could you help me ? Here’s my code :
@echo off
setlocal
for %%G in ("%~dp0\webm\*.webm") do (
ffmpeg -i "%%G" -pix_fmt rgb24 -crf 17 "%%G.gif"
)
)
endlocal
pauseAlso, could you instruct me in a way in which I can remove the .webm from the output filename ? it outputs as "(file name).webm.gif"
-
Decrease size of video in android with minimal loss of quality
26 mai 2023, par Koushik RoyI am recording video using camera intent and getting displaying it in a videiview. Now i want to upload it, But it is very big in size. I want to compress it using FFMPEG as I found the many article and in SO also, but i didn't find any clear article with codes.


Can anyone help me with ffmpeg code ?
Is there any other way to do it in android ?
Thanks in advance.