Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (17)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately 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 (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (4261)

  • OSError : [Errno 2] No such file or directory - code worked on new computer doesnt work on old one

    9 mars 2016, par Natasha Hoherchak

    I wrote a script to extract frames from a database I have stored on my computer desktop. I wrote the code on a different computer (new macbook pro 2016) as my computer’s harddrive died. I was finally able to restore my computer (and therefore returned the new computer I wrote the code on).

    I am trying to run the same script, completely unchanged and I keep getting this error : (The line btwn ** ATTENTION** is the printed command line.)

    --------------------------**********ATTENTION**********-------------------------
    ffmpeg -i /Desktop/UCF101/v_BaseballPitch_g01_c01.avi -ss 00:00:00.0 -vframes 1 BPout0.png
    --------------------------**********ATTENTION**********-------------------------
    Traceback (most recent call last):
     File "./Desktop/processing.py", line 50, in <module>
       processvideo('/Desktop/UCF101/v_BaseballPitch_g01_c01.avi')
     File "./Desktop/processing.py", line 47, in processvideo
       sp.check_output(args) #was cmdline
     File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 568, in check_output
       process = Popen(stdout=PIPE, *popenargs, **kwargs)
     File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 711, in __init__
       errread, errwrite)
     File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1308, in _execute_child
       raise child_exception
    OSError: [Errno 2] No such file or directory
    </module>

    Everything is in the same place as it was on the new computer where it was able to run successfully. Does anyone have any idea what it could be ? Could my version of python have anything to do with it ? Could it be a larger issue on my computer ? Any tips for debugging whats caused this error ? I’ve already printed the command (matches perfectly), used shlex.split("mycommandline"), checked my current directory in the script...

  • Introducing the Piwik Java Tracker – Analytics for your Java based applications

    18 novembre 2015, par Brett — Community, Development

    Hello Piwik Community !

    My name is Brett Csorba, a Software Engineer out of the US. I’d like to introduce the Piwik Java Tracker project, an easy way to track usage data within your Java applications !

    When would I need to track users in a Java application ? What’s wrong with front end tracking ?

    Absolutely nothing ! We encourage users to track information where it makes the most sense for them ! But in cases where

    • you have a 100% Java based application
    • you expose a REST layer where users can bypass your front end tracking code
    • you have valuable data you want to track that is unnecessary or too sensitive to pass back to the user

    the Piwik Java Tracker can help you track the data you need.

    What exactly can it track ?

    We aim to provide the full Tracking HTTP API. If you find we’ve left something out by mistake, let us know !

    You’ve sparked my curiosity, how would I use such a thing ?

    Well, once you’ve installed Piwik and set up your first website, you can grab the latest jar and include it in your project. The dependencies needed to both use and test this library can be found here.

    This library is intended to be used for projects that support Java 8. The released binaries are built, tested, and deployed from Oracle JDK 8.

    Using this API is as simple as creating a new request

    PiwikRequest request = new PiwikRequest(1, new URL("http://my-site.com/action")) ;

    Setting some more information if you want to

    request.setActionName("myAction") ;
    request.setPageCustomVariable("key", "value") ;

    and firing the request.

    PiwikTracker tracker = new PiwikTracker("http://your-piwik-domain.tld/piwik.php") ;
    HttpResponse response = tracker.sendRequest(request) ;

    Check out this guide to using the API for some more information !

    Looks cool so far, can I help out ?

    Yes ! Absolutely ! Download the project, try it, break it without mercy ! (Just make sure you tell us how.) Contribute to the project or let us know what we can do to it to improve it. As with all open source projects, we need your help to improve it.

  • Introducing the Piwik Java Tracker – Analytics for your Java based applications

    18 novembre 2015, par Brett — Community, Development

    Hello Piwik Community !

    My name is Brett Csorba, a Software Engineer out of the US. I’d like to introduce the Piwik Java Tracker project, an easy way to track usage data within your Java applications !

    When would I need to track users in a Java application ? What’s wrong with front end tracking ?

    Absolutely nothing ! We encourage users to track information where it makes the most sense for them ! But in cases where

    • you have a 100% Java based application
    • you expose a REST layer where users can bypass your front end tracking code
    • you have valuable data you want to track that is unnecessary or too sensitive to pass back to the user

    the Piwik Java Tracker can help you track the data you need.

    What exactly can it track ?

    We aim to provide the full Tracking HTTP API. If you find we’ve left something out by mistake, let us know !

    You’ve sparked my curiosity, how would I use such a thing ?

    Well, once you’ve installed Piwik and set up your first website, you can grab the latest jar and include it in your project. The dependencies needed to both use and test this library can be found here.

    This library is intended to be used for projects that support Java 8. The released binaries are built, tested, and deployed from Oracle JDK 8.

    Using this API is as simple as creating a new request

    PiwikRequest request = new PiwikRequest(1, new URL("http://my-site.com/action")) ;

    Setting some more information if you want to

    request.setActionName("myAction") ;
    request.setPageCustomVariable("key", "value") ;

    and firing the request.

    PiwikTracker tracker = new PiwikTracker("http://your-piwik-domain.tld/piwik.php") ;
    HttpResponse response = tracker.sendRequest(request) ;

    Check out this guide to using the API for some more information !

    Looks cool so far, can I help out ?

    Yes ! Absolutely ! Download the project, try it, break it without mercy ! (Just make sure you tell us how.) Contribute to the project or let us know what we can do to it to improve it. As with all open source projects, we need your help to improve it.