
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (102)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (8644)
-
Minor change to work around a jQuery 1.4.2 bug for legacy users.
20 mars 2013, par jackmoorem README.md m colorbox.jquery.json m component.json m example1/index.html m jquery.colorbox-min.js m jquery.colorbox.js Minor change to work around a jQuery 1.4.2 bug for legacy users.
-
avcodec/mpegvideo_enc : Don't do unnecessary work for AMV
25 février, par Andreas Rheinhardtavcodec/mpegvideo_enc : Don't do unnecessary work for AMV
Up until now, the initialization of AMV's matrices happened
after the initialization for MJPEG matrices, overwriting
the earlier data. This commit changes this.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
FFMPEG encoding example does not work with VPx encoders
11 septembre 2018, par user4177870I am using the following example from FFMPEG to write a raw steam of VP8 or VP9 encoder :
https://ffmpeg.org/doxygen/trunk/encode_video_8c-example.htmlThe VP8 or VP9 based file is written successfully to the disk. Then to mux this stream into a container, I sued FFMPEG command line :
ffmpeg -i myfile.vp9 -c copy testvideo1.mkv
I get the following error when I run the above command :
ffmpeg version N-91789-g11cec34829 Copyright (c) 2000-2018 the FFmpeg developers
myfile.vp9 : Invalid data found when processing input
However, when I run the above set of operations for h264, its works fine.
I assume its because of the endcode = 0, 0, 1, 0xb7 which might not work for VPx encoders.
Not sure whats the issue. Any help would be appreciated.