
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (52)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...) -
Initialisation de MediaSPIP (préconfiguration)
20 février 2010, parLors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)
Sur d’autres sites (2974)
-
How to encode (ffmpeg x264) with continuous seek
13 avril 2015, par ComputerVisionerI have a batch file that encodes video files from ’Source’ folder to ’Target’ folder.
The batch file content is :
for %%a in ("Source*.*") do @echo DirectShowSource("%%a") >> "batchScript.avs" && @echo MSharpen(10,120) >> "batchScript.avs" && ffmpeg -i "batchScript.avs" -n -c:v libx264 -crf 24 -c:a libmp3lame -b:a 192k "Target\%% na.mp4" && del "batchScript.avs" pause
I’m not sure why, but when I playback the encoded files in media player classic I can only jump to discrete jumps in time and not to the exact time I clicked on.
What can be done so this doesn’t happen ?
Thanks all !
-
Android - Best solution to convert recorded H.264 Main Profile videos to H.264 Baseline Profile
19 février 2016, par AlirezaI found
MediaPlayer
cannot play videos which are encoded byH.264 Main Profile
and I triedExoPlayer
andVitamio
but none of them solved my problem. finally I found the best solution is converting videos toH.264 Baseline Profile
.FFmpeg
is almost 9MB and it’s so heavy for my project, so I don’t like to use it for converting videos to that profile by commands. My friend suggested converting videos on the server-side but we both know it has bad performance. What should I do ? What is the best solution to this problem ? -
Revision e5fb4b61b6 : Use pmovmskb to skip quantize loops over empty coefficients. If none of the 16
1er juillet 2013, par Ronald S. BultjeChanged Paths :
Modify /vp9/encoder/x86/vp9_quantize_ssse3.asm
Use pmovmskb to skip quantize loops over empty coefficients.If none of the 16 coefficients that we quantize per loop iteration
are larger than the zbin, directly skip to the next round of coeffs,
rather than doing a full quantize loop that will eventually result
in 16 zeroes. This incurs a jump cost, but saves a lot of other work.
32x32 quant goes from 1349 -> 1184 cycles. The same approach yielded
no significantly positive results for smaller transforms, so is not
used there (8x8 : 103 -> 101 cycles ; 16x16 : 302 -> 306 cycles).Change-Id : I8fca17dc2543fc8eed1dbcd5100145e3c3a9b647