Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (99)

  • 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 (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (10317)

  • ffmpeg-Error splitting the argument list : Option not found

    1er mars 2017, par Stranger

    I am trying to execute below command using ffmpeg-android-java

    -i /storage/sdcard0/WhatsApp/Media/WhatsApp
    Video/VID-20170228-WA0000.mp4 -ss 180 -t 292 -strict -2 -async 1
    /storage/sdcard0/Movies/cropper_video_1.mp4

    I am getting below failure message-

    FAILED with output : ffmpeg version n3.0.1 Copyright (c) 2000-2016 the
    FFmpeg developers
    built with gcc 4.8 (GCC)
    configuration : —target-os=linux
    —cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi-
    —arch=arm —cpu=cortex-a8 —enable-runtime-cpudetect —sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot
    —enable-pic —enable-libx264 —enable-libass —enable-libfreetype —enable-libfribidi —enable-libmp3lame —enable-fontconfig —enable-pthreads —disable-debug —disable-ffserver —enable-version3 —enable-hardcoded-tables —disable-ffplay —disable-ffprobe —enable-gpl —enable-yasm —disable-doc —disable-shared —enable-static —pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config —prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a —extra-cflags=’-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include
    -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all’ —extra-ldflags=’-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib
    -Wl,-z,relro -Wl,-z,now -pie’ —extra-libs=’-lpng -lexpat -lm’ —extra-cxxflags=
    libavutil 55. 17.103 / 55. 17.103
    libavcodec 57. 24.102 / 57. 24.102
    libavformat 57. 25.100 / 57. 25.100
    libavdevice 57. 0.101 / 57. 0.101
    libavfilter 6. 31.100 / 6. 31.100
    libswscale 4. 0.100 / 4. 0.100
    libswresample 2. 0.101 / 2. 0.101
    libpostproc 54. 0.100 / 54. 0.100
    Unrecognized option ’i /storage/sdcard0/WhatsApp/Media/WhatsApp
    Video/VID-20170228-WA0000.mp4 -ss 180 -t 292 -strict -2 -async 1
    /storage/sdcard0/Movies/cropper_video_1.mp4’.
    Error splitting the argument list : Option not found

    Why am i getting this error and how can i resolve it ?

  • Create dynamic playlist in ffmpeg

    12 juillet 2017, par Ahmad Ali Mukashaty

    I want to stream videos countinuously so I create this playlist (test.txt)

    file ’test1.mp4’

    file ’test2.mp4’

    file ’test3.mp4’

    and I use this command in ffmpeg to run playlist

    ffmpeg -re -f concat -i test.txt -b:v 2.5M -c:v libx264 -acodec aac -f mpegts udp://127.0.0.1:1234?pkt_size=188&buffer_size=3M

    But is there a way to add files to run after this playlist without interrupt streaming or Make the process moves to another playlist When the first one ends

    I am looking for any way to stream other movies after playlist finish during the process running (without interrupt streaming)

    please help me

  • Create dynamic playlist in ffmpeg

    12 octobre 2016, par Ahmad Ali Mukashaty

    I want to stream videos countinuously so I create this playlist (test.txt)

    file ’test1.mp4’

    file ’test2.mp4’

    file ’test3.mp4’

    and I use this command in ffmpeg to run playlist

    ffmpeg -re -f concat -i test.txt -b:v 2.5M -c:v libx264 -acodec aac -f mpegts udp://127.0.0.1:1234?pkt_size=188&buffer_size=3M

    But is there a way to add files to run after this playlist without interrupt streaming or Make the process moves to another playlist When the first one ends

    I am looking for any way to stream other movies after playlist finish during the process running (without interrupt streaming)

    please help me