
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (18)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (2450)
-
Users Flow for Piwik : discover the most popular paths your users take through your website or app
14 décembre 2016, par InnoCraft — PluginsHi, this is Tom from InnoCraft. The company of the makers of Piwik.
Do you know how your visitors navigate through your website or app ? Well, we thought we did, but it turned out we didn’t until we actually were able to visualize those paths over several steps in an easy to understand graph. We were really surprised by some paths our users took every day. We discovered new popular pages where we totally under-estimated their importance. We found that many users actually had a problem on our home page so they had to reload it and we improved some popular paths we didn’t expect users were going. Now these paths are much more straight-forward for our users.
-> Read the rest of the story on the Users Flow Marketplace page.
What does the new Users Flow report look like ?
Here is below just a little preview of the Users Flow report. The plugin includes more reports and goodies !
Where do I get Users Flow ?
Users Flow is available on the Piwik Marketplace :
Users Flow is premium plugin for Piwik and comes with our 14 day money back guarantee and 1-click installation & updates (all product updates come for free).
You can also signup for a free Piwik Cloud-hosted trial to discover the power of Users Flow !
Happy Analytics,
-
Player downloads all moof part of a fragment mp4 file before playing
28 mars 2023, par happyz90I converted a mp4 to fragment mp4 with the following command :


ffmpeg -i ./input.mp4 -y -b:a 32k -vcodec libx265 -b:v 320k -bufsize 320k -tag:v hvc1 -color_primaries bt709 -color_trc bt709 -colorspace bt709 -c:a libfdk_aac -profile:a aac_he_v2 -movflags faststart+frag_keyframe+empty_moov+dash+global_sidx -chunk_duration 500000000 -max_muxing_queue_size 1024 ./output.mp4



But when playing, the player send many http requests to download all the moof part :






But I think in normal case the player only need to download the head part of the video file to play.


So is there anything wrong with my ffmpeg parameters ? Please help me. Thank you.


-
Julia FFMPEG string not recognizing format specifier
12 janvier 2024, par veryverdeI have this code :


using Pkg
#Pkg.add("FFMPEG")
using FFMPEG

imagesdirectory = "my/paths/images"
framerate = 30
gifname = "my/paths/images/my-animation-name.gif"
FFMPEG.ffmpeg_exe(`-framerate $(framerate) -f image2 -i $(imagesdirectory)/%07d.png -y $(gifname)`)



This code is taken from here
In it, FFMPEG is supposed to match those files that have 7 digits, which is what the %07d . That is, of the format 0000123.png, for example.


This is, for whatever reason, not parsing it correctly, and reading the string directly :


[image2 @ 0x7fc9fb00a000] Could find no file with path '/my/paths/images/%07d.png' and index in the range 0-4
/my/paths/images/%07d.png: No such file or directory



I am not sure how to input this matching so that it is read properly, i.e., so that it matches all those files with exactly 7 digits, and a .png extension. For others, from the source of the code, it seems to be working, but I have no idea why it would parse it incorrectly. I've downloaded FFMPEG specifically for this task, so it ought to be up-to-date.