Recherche avancée

Médias (91)

Autres articles (106)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (10639)

  • FFMPEG Extra just codec information

    18 juin 2014, par Jim

    I am planning on using FFMPeg with Java, to detect a specific codec and convert this to another. Using the FFMpeg line -

       ffprobe -v quiet -print_format json -show_streams "input.avi"

    I can print off all of the stream information of the video, but this includes video information, audio information, all metadata, all tags and other information which I just don’t need.

    Question : Is it possible to launch an FFMpeg command which only returns the video codec, so I don’t have to wave through unnecessary information ?

  • OpenCV : VideoCapture not working with DSHOW backend

    12 juin 2017, par nji9

    I built OpenCV (with mingw 4.9.2 @ Win7Prof64) with
    CMake switches for WITH_FFMPEG and WITH_DSHOW turned on.
    When I access a movie file with VideoCapture (fileName) works fine (it uses ffmpeg backend then).

    But VideoCapture (fileName, cv::CAP_DSHOW) doesn’t work
    (isOpened() returns false).

    What is missing/ what do I do wrong ?
    Are there any kind of dshow libs/ dlls needed ?

  • simple loop saying no file found terminal

    29 mai 2021, par Frodo Baggins

    I have this command which I am trying to find all movie files in all directories, convert them, and remove the original, within all sub directories. It displays the file names but it returns no such file found.

    


    for oggfile in "$(find . -iname '*.mp4' -or -iname '*.avi' -or -iname '*.mov')"
do
ffmpeg -i ${oggfile} -b:a 320000 -vcodec libx264 ${oggfile}_newCompressed.mp4
rm $oggfile
done ```