Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (6317)

  • 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

  • Avconv / FFmpeg - could not find codec parameters

    21 octobre 2014, par scottpaterson

    I am trying to convert a simple SWF (that accepts variables - FlashVars) to an mp4 on Linux Ubuntu.

    I have been using Gnash to convert the SWF into a Raw video file :

    dump-gnash -1 -D /path/output.raw@30 -P "Flashvars=content=textgoeshere" /path/input.swf

    Then I am attempting to use either Avconv / FFmpeg to convert the Raw video file to a MP4 :

    ffmpeg -i /path/input.raw -c:v libx264 -f rawvideo -c copy -map 0 /path/output.mp4

    or

    avconv -i /path/input.raw -b 128k /path/output.mp4

    both give me the error :

    invalid data found when processing input

    I am start to wonder if there is something wrong with my original SWF file. So here here are the files I am using for input. As you can see the txt file holds the variables that the SWF reads from.

    http://scottpaterson.ca/files/example1.swf

    http://scottpaterson.ca/files/example1.txt

    How can I convert this into an MP4 video ? Any help would be great, thanks in advance.

  • Command find and convert using ffmpeg

    16 avril 2023, par molwiko

    I would like to combine the two following commands to find mp4 files and convert them to mp3 and save them with same name.
The two command line :

    



    find ./ -name '*.mp4'
ffmpeg -i video.mp4 -vn -acodec libmp3lame -ac 2 -ab 160k -ar 48000 audio.mp3