
Recherche avancée
Autres articles (67)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7191)
-
Android and ffmpeg, x264 bitrate and videosize
11 décembre 2012, par bruxI am concatenating two mp4 files by first converting them to mpeg, once I have concatenated the mpegs I want to produce a final larger mp4.
The following code works fine in order to produce the mpegs
ffmpeg -i one.mp4 -q:v 2 -vcodec mpeg2video -acodec copy one.mpg
ffmpeg -i two.mp4 -q:v 2 -vcodec mpeg2video -acodec copy two.mpgAfter concatenating these 2 files (using java) I produce the final mp4 like this :
ffmpeg -i joined.mpg -vcodec libx264 -acodec copy joined.mp4
The command works and a low quality mp4 is produced since I am not specifying a 'bitrate' or 'videosize' in the MediaRecorder class object.
Here are the settings I use on my MediaRecorder object when encoding the video in Android
mediaRecorder.setAudioSource(MediaRecorder.AudioSource.CAMCORDER);
mediaRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
mediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
mediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
mediaRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264);if I add the following two lines in order to increase the bitrate and videosize of one.mp4 and two.mp4 then the resultant mp4's playback fine using the default player on android, but after converting to mpg and then concatenating and then using the above ffmpeg command to encode a new mp4, th resultant joined.mp4 is less quality than the original mp4's are started out with (one.mp4 and two.mp4)
mediaRecorder.setVideoEncodingBitRate(2000000);
mediaRecorder.setVideoSize(800, 480);Do i need to add more parameters to my ffmpeg commands in order to do this successfully ?
-
Révision 24162 : Ticket #4245 : Correction empêchant la création de certains répertoires, s’ils on...
11 décembre 2018, par marcimat@rezo.netÀ partir de SPIP 3.3-dev, on supprime la gestion de la constante _CREER_DIR_PLAT de la fonction `sous_repertoire` ; on tolère un _ final sur les noms de répertoires à créer.
Corrige, entre autres un bug dans le plugin Bigup empêchant la réception de certains fichiers.
-
Anomalie #2717 (Nouveau) : Ne pas proposer de sauvegarde si on n’a pas sqlite
20 mai 2012, par Gilles VINCENTsqlite est facultatif lors de l’installation de SPIP3.0 - On s’attend logiquement à ce que ce soit pareil pour la sauvegarde mais ce n’est pas le cas. le bug #2135 a été fermé en disant qu’il existe un plugin qui permet de rétablir les anciens dump au format xml, mais l’utilisateur final, lui, (...)