
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 (55)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (6232)
-
Anomalie #3863 (Nouveau) : liste de tous les plugins dans les résultats de recherche du back-office
23 novembre 2016, par Peet duHello,
lorsque l’on fait une recherche dans le back-office sur un id_objet (ex : 974), on voit apparaître la liste complètes des plugins.
Explication
Il me semble que l’explication se trouve dans la fonction inclure_liste_recherche_par_id()
voir https://core.spip.net/projects/spip/repository/entry/spip/prive/squelettes/contenu/recherche_fonctions.php#L14Il renvoi dans l’env id_plugin, mais comme ce critère n’existe pas dans
https://core.spip.net/projects/svp/repository/entry/prive/objets/liste/plugins.html#L37, la recherche renvoi la liste complète des plugins.Pour éviter ce "bruit", il me semble qu’il suffit de rajouter le critère id_plugin ? à la ligne /svp/repository/entry/prive/objets/liste/plugins.html#L37
-
mov : Evaluate the movie display matrix
24 octobre 2016, par Vittorio Giovaramov : Evaluate the movie display matrix
This matrix needs to be applied after all others have (currently only
display matrix from trak), but cannot be handled in movie box, since
streams are not allocated yet. So store it in main context, and apply
it when appropriate, that is after parsing the tkhd one.Fate tests are updated accordingly.
Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>
-
Making a movie from the url using ffmpeg and phantomjs
1er novembre 2016, par MattIm Taking screen shots from a url, using phantomjs using the setIntreval function (25 right now) and then piping the output to the ffmpeg (Using the frame rate -r 24).
Here is the Code. ffmpeg.jsvar page = require('webpage').create();
page.viewportSize = { width: 1024, height: 768 };
page.open('http://ewoken.github.io/Leaflet.MovingMarker/', function () {
setInterval(function() {
page.render('/dev/stdout', { format: "png" });
}, 25);
});Then I run the script using this.
phantomjs ffmpeg.js | ffmpeg -y -c:v png -f image2pipe -r 24 -t 10 -i - -c:v libx264 -pix_fmt yuv420p -movflags +faststart output.mp4
Like In the command Im getting the 10 sec video with the page, But Its all speeding up fast first and completely freezes with a last frame.
Can you guys help me, with a work around, enabling me to record the page , AS IS ? Like if there is a 3000 delay animation in the movie, It should appear like real in the movie, like smooth and in real time.
Thank you guys. Stuck on this for a long time now.
Cheers,