
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (21)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (4669)
-
Can't Transfer .DAT (mpeg2 codec) Video to Any Other Format [closed]
14 mai 2021, par Juan JinpingI have a PS2 official bonus DVD which is full of 3 hour cutscenes of MGS3. But I don't have my PS2 anymore to watch it. So I decided to transfer lossless or at least the most lossless possible. Because I am some kind of obsessed.


I tried to use FFMPEG but it doesn't look it worked. At least once a minute the video goes blocky, pixelated. I tried the codes given below. I could find way more better videos on YouTube.


Neither of these and their variations worked :

ffmpeg -i DEMO_3.dat DEMO_3.mkv

ffmpeg -i DEMO_3.dat -c:v libx264 -crf 0 DEMO_3.mkv


I also tried it to use 3000k bitrate because it's the original bitrate of this video
ffmpeg -i DEMO_3.dat -c:v libx264 -b 3000k DEMO_3.mkv


Then I thought I could convert them into .png frames then reencode h264 to with "-crf 0". But frames that I extracted were blocky and pixelated too.
ffmpeg -i DEMO_3.dat -r 29.970/1 %06d.png


I wanted to check if my disc is broken or damaged. I downloaded the disc that I own as .iso on the internet and tried the same things but got the same results.


And also the audio is not even extracted eventhough Mediainfo says there is 4 audio tracks. (probably besides English any other 3 dubs and I want them too)


Long story short I want the .dat file with highest quality possible video and all audio tracks in the original mpeg2 codec or h264 codec in mkv container. You can recommend me any other program to do it or just give me code advices.


-
How to fix the problem of wrong colors shown in the local video window of MicroSIP ?
25 juillet 2022, par YadidI'm developing a project which is a customization based on MicroSIP in Windows. The local video window performs the video stream from Screen Capture Recorder, which is as a virtual camera and captures the screen. And the problem is the colors of the picture of the local video window are not correct. The picture I uploaded is the example of the problem, it seems like that the red and the blue are exchanged.

I'd tried to upgrade the FFmpeg to 5.0.1 and the SDL to 2.0.22, both are probably the latest versions, but it doesn't fix the color problem.

This problem also occurs when using the latest official version of MicroSIP(3.21.2).

source code of MicroSIP

source code of PJSIP (the low-level module which provides interfaces for video, audio, etc. Maybe it's the origin of the color problem)

And while using some of the other software which can display pictures of the virtual camera, they can show pictures fine with the correct colors, e.g. MyCam.
How to fix this problem ? Or which parts can I do some research on about this problem ? Any help would be appreciated.


-
Evolution #4339 (Nouveau) : Relancer les inscriptions en attente
22 mai 2019, par b bSuite à #4073 et les révisions associées, les admins ont accès à la liste des auteurs dont l’inscription est en attente de validation, ce qui est très bien. Mais, on ne peut pas relancer le mail d’inscription à un auteur ou à tous ceux en attente, ce qui est moins bien.
En cherchant comment relancer une dizaine d’auteurs en attente (à cause d’un problème passager d’envoi d’email), je me suis rendu compte que c’est une situation dont il n’est pas facile de se tirer. En effet, les auteurs en questions ne peuvent pas tenter de se réinscrire avec le même email car cela génère une erreur dans le form d’inscription (normal ça ferait doublon). Je vais revenir sur ce point plus bas.
J’ai donc cherché une solution pour relancer tous ces auteurs en attente et je suis tombé sur r17837 qui introduit l’option
force_nouveau
à la fonctionaction_inscrire_auteur_dist()
. À noter que cette option n’est utilisée nul part dans le core, ni sur les plugins de la zone, c’est donc l’occasion de s’en servir :) J’en suis arrivé à ce code très simple qui permet de relancer tous les auteurs en attente de validation, statut = nouveau donc :- <span class="CodeRay">include_spip(<span class="string"><span class="delimiter">'</span><span class="content">action/inscrire_auteur</span><span class="delimiter">'</span></span>);
- <span class="local-variable">$nouveaux</span> = sql_allfetsel(<span class="string"><span class="delimiter">'</span><span class="content">prefs, email, nom</span><span class="delimiter">'</span></span>, <span class="string"><span class="delimiter">'</span><span class="content">spip_auteurs</span><span class="delimiter">'</span></span>, <span class="string"><span class="delimiter">"</span><span class="content">statut='nouveau'</span><span class="delimiter">"</span></span>);
- <span class="keyword">while</span> (<span class="local-variable">$row</span> = <span class="predefined">array_pop</span>(<span class="local-variable">$nouveaux</span>)) {
- action_inscrire_auteur_dist(<span class="local-variable">$row</span>[<span class="string"><span class="delimiter">'</span><span class="content">prefs</span><span class="delimiter">'</span></span>], <span class="local-variable">$row</span>[<span class="string"><span class="delimiter">'</span><span class="content">email</span><span class="delimiter">'</span></span>], <span class="local-variable">$row</span>[<span class="string"><span class="delimiter">'</span><span class="content">nom</span><span class="delimiter">'</span></span>], <span class="predefined">array</span>(<span class="string"><span class="delimiter">'</span><span class="content">force_nouveau</span><span class="delimiter">'</span></span> => <span class="predefined-constant">true</span>));
- }
- </span>
Je pense que ça serait pas mal d’en faire une action pour relancer un auteur précis, ou tous les auteurs en attente si pas d’id_auteur passé en argument, puis d’ajouter un bouton action dans la colonne de navigation des pages
?exec=auteurs
et?exec=auteur&id_auteur=
si l’auteur en cours a pour statutnouveau
.Pour en revenir au formulaire d’inscription, il serait malin (à vérifier) que celui-ci utilise l’option
force_nouveau
quand un auteur dont le statut estnouveau
tente de s’inscrire une nouvelle fois avec le même email, plutôt que de lui envoyer une erreur parce que son mail est déjà présent en base.Vos avis sur la question ?