Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (52)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Gestion générale des documents

    13 mai 2011, par

    Mé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 (8765)

  • fate : Add basic license header check

    27 septembre 2015, par Michael Niedermayer
    fate : Add basic license header check
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/Makefile
    • [DH] tests/fate-run.sh
    • [DH] tests/fate/source-check.sh
    • [DH] tests/fate/source.mak
    • [DH] tests/ref/fate/source
  • Anomalie #3910 : URL mal formaté dans le mail pour "Mot de passe oublié"

    7 mars 2017, par Vincent Legeard

    Ok squelettes-dist/formulaires/oublie.php a été patché entre la version 3.1.3 et 3.1.4

    $ diff -pu spip-3.1.3/squelettes-dist/formulaires/oubli.php spip-3.1.4/squelettes-dist/formulaires/oubli.php
    
    — - /home/www/default/spip/squelettes-dist/formulaires/oubli.php 2016-09-30 23:38:54.000000000 +0200 +++ spip/squelettes-dist/formulaires/oubli.php 2017-03-06 10:30:18.000000000 +0100 @@ -35,7 +35,7 @@ function message_oubli($email, $param) $msg = recuperer_fond( "modeles/mail_oubli", array(
    - ’url_reset’ => url_absolue(generer_url_public(’spip_pass’, "$param=$cookie"),$GLOBALS[’meta’][’adresse_site’]) + ’url_reset’ => url_absolue(generer_url_public(’spip_pass’, "$param=$cookie"), $GLOBALS[’meta’][’adresse_site’] . ’/’) ) ) ; include_spip("inc/notifications") ;
  • FFMPEG error : Error while parsing expression 'PTS-STARTPTS+/TB' while trying to merge two videos with different starting time [closed]

    13 octobre 2020, par Sankalpa Sarkar

    I was trying to merge two videos in .webm format side-by-side, with the exception that the second video might start a bit later than the first video, in which case there will be a blank buffer on the right side till it starts. To do that, I deployed the following code :

    &#xA;

       DIFF=$(($start_ts-$BASEts))&#xA;   DIFFms=`echo "scale=0;$DIFF/1000" | bc`&#xA;   DIFFs=`echo "scale=4;$DIFF/1000000" | bc`&#xA;   ffmpeg -i a.webm -i b.webm -filter_complex \&#xA;    "[0]pad=2*iw:1*ih[l];[1]setpts=PTS-STARTPTS&#x2B;$DIFFs/TB[1v]; [l][1v]overlay=x=W/2[v]; \&#xA;    [1]adelay=$DIFFms|$DIFFms[1a]; \&#xA;    [0][1a]amix=inputs=2[a]" \&#xA;    -map "[v]" -map "[a]" -vcodec libvpx -cpu-used -5 -deadline realtime finalOutput.webm&#xA;

    &#xA;

    However, I keep getting this error :

    &#xA;

    [Parsed_setpts_1 @ 0x5598b680cdc0] [Eval @ 0x7ffcb6ae1550] Undefined constant or missing &#x27;(&#x27; in &#x27;/TB&#x27;&#xA;[Parsed_setpts_1 @ 0x5598b680cdc0] Error while parsing expression &#x27;PTS-STARTPTS&#x2B;/TB&#x27;&#xA;[AVFilterGraph @ 0x5598b67872a0] Error initializing filter &#x27;setpts&#x27; with args &#x27;PTS-STARTPTS&#x2B;/TB&#x27;&#xA;Error initializing complex filters.&#xA;Invalid argument&#xA;

    &#xA;

    It is not recognizing the DIFFs variable at all and is hence unable to process the code. I tried replacing the entire setpts in a different variable as well and using it in setpts while merging. That process did not work either

    &#xA;