Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (48)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 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

Sur d’autres sites (7913)

  • Some Mp3 Audio Files are not playing

    28 octobre 2014, par Ramesh Karanam

    When Playing mp3 Audio Files some songs are playing successfully but some songs are not playing.When decoding audio file getting error like No Data found when processing input.

    dec_ctx = fmt_ctx->streams[audio_stream_index]->codec;

    Finding Audio Stream :

    audio_st = fmt_ctx->streams[audio_stream_index];

    Finally I am Decoding Audio

    if (packet.stream_index == audio_stream_index)
               {
                   frame = avcodec_alloc_frame();
                   avcodec_get_frame_defaults(frame);
                   got_frame = 0;
                   ret = avcodec_decode_audio4(dec_ctx, frame, &got_frame, &packet);
    }

    Here avcodec_decode_audio4 returns the negative value when printing error it shows Inavalid Data Found When Processing input.

    I am Using ffmpeg 2.0.1 My configure options are

    --prefix=$PREFIX \
       --enable-shared \
       --enable-static \
       --enable-doc \
       --enable-ffmpeg \
       --enable-ffplay \
       --enable-ffprobe \
       --enable-ffserver \
       --enable-avdevice \
       --enable-doc \
       --enable-symver \
       --enable-swresample\
       --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
       --target-os=linux \
       --arch=arm \
       --enable-cross-compile \

    I am not understanding whats the problem ?code or any modifications required in ffmpeg configure file.Please Provide any information about this issue.

  • Nomenclature #3465 : Nouvelle balise : #LOGO

    26 novembre 2018, par jluc -

    Avec d’autres specs en plus :

    • #LOGO : à l’intérieur d’une boucle, logo de l’objet
    • #LOGO : à l’extérieur d’une boucle, logo du site.
    • #LOGO* : ajoute un lien sur l’image du logo vers l’objet éditorial
    • #LOGO** : retourne le nom du fichier de logo.
    • #LOGOright : Valeurs possibles : top left right center bottom
    • #LOGOicone : Valeurs possibles : auto icone apercu vignette
    • #LOGO200, 0 : Redimensionnement indiqué
    • #LOGO#URL : : ajoute un lien sur l’image du logo vers l’url
      *
      * Idem en spécifiant objet et id_objet
      * #LOGOrubrique, 13 : logo de la rubrique 13
      * #LOGOrubrique, #ID_SECTEUR
      * #LOGOrubrique, 13, icone
      * #LOGOrubrique, 13, 200, 0
  • Shell script not working on a different server

    11 novembre 2013, par Alex Blundell

    I've just migrated a shell script to another server with similar specs (same CentOS version) but the following command seems to fail :

    find /home/removed/captures -name '*.avi' -exec ffmpeg -y -i {} -ab 1280 -b 1024000 {}.mp4 \;

    The following message gets returned :

    find: `ffmpeg': No such file or directory

    I have installed ffmpeg, and made sure it runs from the command line. I've also tried passing in the full path to ffmpeg instead of just 'ffmpeg'. Both ffmpeg versions are the same on each server. I was thinking it was something to do with syntax of the find program changing between versions, but they're both the same version too. This runs via the root crontab.

    The script does run by itself though if I call it directly. Could this be an issue with permissions ? It runs on a cPanel server.

    Thanks :)