Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (110)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (8292)

  • FFmpeg convert mp3 to pcm error "could not find codec parameters"

    20 février 2020, par Hanqing Wu

    When I am trying to convert a mp3 file to pcm using the following code, I repeatedly get the error message

    [mp3 @ 0x22cc420] Format mp3 detected only with low score of 1, misdetection possible!
    [mp3 @ 0x22cd260] Header missing
    [mp3 @ 0x22cc420] decoding for stream 0 failed
    [mp3 @ 0x22cc420] Could not find codec parameters for stream 0 (Audio: mp3, 0 channels, s16p): unspecified frame size
    Consider increasing the value for the 'analyzeduration' and 'probesize' options
    test.mp3: could not find codec parameters
    Input #0, mp3, from 'test.mp3':
     Duration: N/A, start: 0.000000, bitrate: N/A
       Stream #0:0: Audio: mp3, 0 channels, s16p
    [abuffer @ 0x22cfaa0] Value inf for parameter 'time_base' out of range [0 - 2.14748e+09]
       Last message repeated 3 times
    [abuffer @ 0x22cfaa0] Error setting option time_base to value 1/0.
    [graph 0 input from stream 0:0 @ 0x22cf620] Error applying options to the filter.

    The mp3 file was converted from a video on Youtube.

  • How to find proper RTMP URL for input in Ffmpeg ?

    2 février 2019, par Teymur Gahramanov

    I have RTMP URL for Reolink-RLC410 camera :

    rtmp ://111.111.111.111:1935/bcs/channel0_main.bcs ?channel=0&stream=0&user=admin&password=admin

    This URL works perfectly with VLC and OBS, but i can’t use this URL with FFMPEG to capture RTMP stream.

    So, how can i transform this URL to format which is required by FFMPEG ?

    The required syntax is :

    rtmp ://[username:password@]server[:port][/app][/instance][/playpath]

    https://www.ffmpeg.org/ffmpeg-all.html#rtmp

  • ffmpeg Unable to find a suitable output format for 'ffmpeg -i '

    20 mai 2017, par Ramos

    Hi everyone i try to mirror my video file i use this library for ffmpeg

    compile ’com.writingminds:FFmpegAndroid:0.3.2’

    and this is my commande :

    uriPathOut = getInternalDirectoryPath() + "/Movies/3.mp4" ;
    uriPathIn = getInternalDirectoryPath() + "/Movies/1.mp4" ;

    cmd = new String[]"ffmpeg -i",uriPathIn," -vf \"vflip\" -metadata:s:v rotate=180 ",uriPathOut ;

    and i always get this error :

    ’[NULL @ 0xb84192d0] Unable to find a suitable output format for ’ffmpeg -i’
    ffmpeg -i : Invalid argument’

    is there any solution help me please.