Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (52)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (12069)

  • Anomalie #3028 (Nouveau) : Strict standards editer_objet.php on line 183

    18 juillet 2013, par Debondt Didier

    J’ai trouver une petite coquille qui génère une erreur :

    Strict standards : Only variables should be passed by reference in /Users/Phenix/Sites/Vertige/marnix/ecrire/action/editer_objet.php on line 183
    

    Le code c’est ça :

    $champs[’statut’] = reset(array_keys($desc[’statut_textes_instituer’])) ;
    

    J’ai modifier pour que cela fonctionne sans erreur :

    $reset = array_keys($desc[’statut_textes_instituer’]) ;
    $champs[’statut’] = reset($reset) ;
    

    Avec ça plus d’erreur :)

  • Get middle line from the output of a command

    14 décembre 2022, par Kishore T

    The following command list the duration of I-frames present in a video file.

    


    ffprobe -i ./test.mp4 -v quiet -skip_frame nokey -select_streams v:0 -of flat -show_entries frame=pkt_pts_time | awk -F'=' '{gsub(/"/, "", $NF); print $NF}'


    


    I'm trying to get the duration of I-frame that is in middle. The output of the above command will be like

    


    0.066667
2.066667
4.066667
9.066667
14.066667
19.066667
24.066667


    


    How do I get the middle value ? Here, I would like to get 9.066667 as the result. If the number of lines is even (say I've 2 values), I need to get the 1st value.

    


    I tried using wc to get the number of lines and sed to print the middle line. But, this straightforward solution required me to run the command twice. I tried piping the command, but I didn't find any solution for storing the value in a variable (from the wc command) and using the same in another command (sed command) while retaining the piped output.

    


  • cmdutils : add opencl command line options to ffmpeg

    11 avril 2013, par highgod0401

    cmdutils : add opencl command line options to ffmpeg