Advanced search

Medias (1)

Tag: - Tags -/punk

Other articles (53)

  • Publier sur MédiaSpip

    13 June 2013

    Puis-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

  • Use, discuss, criticize

    13 April 2011, by

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • List of compatible distributions

    26 April 2011, by

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

On other websites (5732)

  • Anomalie #2988 (Nouveau): Bug squelette liste des messages internes

    30 April 2013, by Eric Camus

    Bonjour,

    Avec SPIP 3.0.8 de base mais en retirant le plugin-dist "breves" (Windows + IIS 6 + PHP 5.2.17).

    Attention : dans l’interface d’administration.

    Il y a une erreur dans la page "ecrire/index.php?exec=controler_forum&type_message=interne" qui fait appel au modèle "prive/modeles/forum.html" sur les ligne 25 et 26 qui sont des boucles sur les objets "breves" et "sites" qui peuvent avoir étés supprimés (ou surtout pas installé au départ -> pas de tables dans la base).

    De plus quand on est sur un message général, apparait un lien sur le titre du message qui est en 404 !!

    J’ai pour ma part remplacer les ligne 23 à 31 par :

    [(#OBJET|oui)

    #OBJET : [(#TITRE|?#TITRE,#NOM)]
    #SETvoir,’


    ]

    Mais c’est juste une proposition qui affiche quelque chose de non satisfaisant au niveau de l’écriture (juste le nom de l’objet, non traduit aussi) mais qui n’affiche rien pour les messages généraux.

    Nota : il y a d’autres références a des boucles (id) "breves" et "sites" dans ce plugin ...(futur bug de nécessité).

  • uploading video to ftp while transcoding with Xuggler

    27 November 2013, by Holly

    I'm trying to transcode a video on a client PC (Win, Linux, IOS - x32 or x64 - all 6) and write the output directly to a ftp server using Xuggler. With pure ffmpeg it would look like this:

    ffmpeg -i "local.mp4" -ftp-write-seekable 0 -c:v libx264 -crf 25 -f flv ftp://user:pass@server.net:1234/uploaded.flv

    I'm assuming that it must be possible since ffmpeg can do it and Xuggler is supposed to be a wrapper for ffmpeg. I got it working using exec("ffmeg") but it needs to work on all 6 OS mentioned above.

    I tried to addapt this example: https://groups.google.com/forum/#!msg/xuggler-users/QeFTxqgc8Bg/0j1ntsl3tI0J by just using a ftp://user:pass@server.net:1234/uploaded.flvas the url but that does not work. Xuggler is unable to create a container based on such an url.

    I guess I should be able to write into an OutputStream and have ftp4j read from that stream and write to ftp. What would I need to consider for that?

    Failing all else I could write into a temp file and upload that, but I really don't like that as a solution.

    1. Can someone please provide me with a code example of how to make Xuggler write to ftp directly?

    2. As a side question. I'm still looking into how to best capture data for displaying the progress in the GUI. So far I found: IMediaListener onWritePacket(IWritePacketEvent event) which I would register to the writer. However I'm not sure how to get the details ffmped reports (current compression, output size so far). The only useful info I found so far is the TimeStamp. Any help on that would also be most welcome.

  • Anomalie #4033 (Nouveau): Critère `{age #TRUC}` erroné en SQLite

    28 October 2017

    Découvert suite à https://forum.spip.net/fr_267686.html

    - Le critère {age<3} fonctionne bien en SQLite.
    - Le critère {age<#TRUC}, avec #TRUC valant 3 provoque une erreur de test en SQLite, qui renvoie toujours VRAI.

    La différence est minime entre les deux :
    - TIMESTAMPDIFF('HOUR',articles.date,NOW())/24 < 3
    - TIMESTAMPDIFF('HOUR',articles.date,NOW())/24 < '3' pour le second

    Mysql quand à lui a parfaitement l’air de s’en accomoder. Notons qu’il y a une petite différence en Mysql sur la sortie : TIMESTAMPDIFF(HOUR ... où HOUR est une variable interne
    alors que sous SQLite c’est un paramètre de la fonction TIMESTAMPDIFF que sqlite_fonctions.php déclare. Mais ça ne change rien au problème rencontré ici.

    Pour tester, sous SQLite on obtient 2 résultats différents.

    #CACHE0
    

    #SQUELETTE

    #ID_ARTICLE : #COMPTEUR_BOUCLE / #GRAND_TOTAL

    #SETage,100

    #ID_ARTICLE : #COMPTEUR_BOUCLE / #GRAND_TOTAL