
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (14)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (5521)
-
Revision 0907cb6b4c : Removing unused third-party libraries. We use libwebm instead of libmkv and nes
22 mai 2014, par Dmitry KovalevChanged Paths :
Delete /third_party/libmkv/EbmlBufferWriter.c
Delete /third_party/libmkv/EbmlBufferWriter.h
Delete /third_party/libmkv/EbmlIDs.h
Delete /third_party/libmkv/EbmlWriter.c
Delete /third_party/libmkv/EbmlWriter.h
Delete /third_party/libmkv/Makefile
Delete /third_party/libmkv/WebMElement.c
Delete /third_party/libmkv/WebMElement.h
Delete /third_party/libmkv/testlibmkv.c
Delete /third_party/nestegg/0001-include-paths.diff
Delete /third_party/nestegg/0002-ne_read_simple-uninitialized_variable.diff
Delete /third_party/nestegg/AUTHORS
Delete /third_party/nestegg/INSTALL
Delete /third_party/nestegg/LICENSE
Delete /third_party/nestegg/README
Delete /third_party/nestegg/README.libvpx
Delete /third_party/nestegg/TODO
Delete /third_party/nestegg/halloc/README
Delete /third_party/nestegg/halloc/halloc.h
Delete /third_party/nestegg/halloc/src/align.h
Delete /third_party/nestegg/halloc/src/halloc.c
Delete /third_party/nestegg/halloc/src/hlist.h
Delete /third_party/nestegg/halloc/src/macros.h
Delete /third_party/nestegg/include/nestegg/nestegg.h
Delete /third_party/nestegg/src/nestegg.c
Delete /third_party/nestegg/test/test.c
Modify /tools/ftfy.sh
Removing unused third-party libraries.We use libwebm instead of libmkv and nestegg.
Change-Id : I339eae081061c2e3eb8b234f14ae1bc846f85011
-
Evolution #4657 : Renommage du menu maintenance
10 février 2021, par nicod _Maïeul Rouquette a écrit :
Dans la même veine que #2835 et #4626. Le menu "maintenance" c’est forcément de la maintenance technique.
Ma proposition :
- renommer le menu "Maintenance" en "maintenance technique""Maintenance" tout court n’est pas suffisant ? Sinon ça va passer sur deux lignes, ce serait moche.
- changer la sous entrée "Maintenance technique" en "gestion des bases", et y regrouper aussi sauvegarde et restauration de la base
- deporter de "Maintenance technique" tout ce qui concerne les statistique, dans une entrée "Historique des statistiques".Un peu de rangement, pourquoi pas :)
-
RTSP to file using IMediaTools errors
4 décembre 2014, par predy23Im trying to save a streaming with RTSP to file with IMediaTools. If I use the local file path of the video in the IMediaReader, it goes nice without errors, but if i make a RTSP streaming of the video and I use the RTSP direction in the IMediaReader i have a lot of errors like this one :
ERROR org.ffmpeg - [h264 error while decoding MB 50 44, bytestream (td)
I can open the output file but it have a lot of blurry zones and its not smooth.
This is my code :
public static void main(String[] args) {
// TODO code application logic here
//create a media reader
System.out.println("starting video conversion..");
// create a media reader
IMediaReader reader = ToolFactory.makeReader(inputFilename);
IMediaWriter writer = ToolFactory.makeWriter(outputFilename, reader);
// add a debug listener to the writer to see media writer events
writer.addListener(ToolFactory.makeDebugListener());
reader.addListener(writer);
// read and decode packets from the source file and
// and dispatch decoded audio and video to the writer
while (true) {
if (reader.readPacket() != null) {
break;
}
}
reader.close();
writer.close();
System.out.println("video conversion finished..");
}