Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (7918)

  • Bash : loop ffmpeg command through sets of subfolders and direct it to files in the folders for processing

    7 décembre 2018, par Katman

    I am playing around with embedding captions into mp4 video files, and want to find a way to do this across large sets of directories with the .mp4 and .srt files in them. Each pair of .mp4 and .srt files will be subfoldered together in their own directory, and the basename should be the same between the two. Example :

    Video1
     Video1.mp4
     Video1.srt
    Video2
     Video2.mp4
     Video2.srt

    I’ve tried several things but I’m a novice at this and only write very simple bash scripts for much more straightforward processes. For this I need to figure out how to write the bash script to run an ffmpeg command in every subfolder that will grab the mp4 and srt file and output a new mp4 of the merged data. The basic ffmpeg command to do this is :

    ffmpeg -i filename.mp4 -i filename.srt -c copy -c:s mov_text output.mp4

    I’ve tried to add :

    for dir in ./*/; do ffmpeg -i *.mp4 -i *.srt -c copy -c:s move_text “$file”.mp4

    …and several variations of this, but ffmpeg always stops with a “*.mp4 : No such file or directory” error. Then I tried to add "for file in..." after the "for dir in" statement but didn’t have any positive results. The following is closest to what I need - it at least goes to each folder and processes the files - but it does them independently and doesn’t combine the mp4 and srt source files as the ffmpeg command should. It outputs a video.mp4.mp4 and video.srt.mp4, and fails to combine them in either case.

    for dir in ./**/*;
    do ffmpeg -i "$dir" -i "$dir" -c copy -c:s mov_text "$dir".mp4

    I tried "$dir".mp4 and "$dir".srt but that just results in an error. I tried to pull just directory names :

    for dir in ./**/*;
    do ffmpeg -i "$(basename $dir)" -i "$(basename $dir)" -c copy -c:s mov_text "$dir".mp4

    and my attempts using "$(basename $dir).extension" have resulted in errors - it looks for video.mp4.mp4 or video.srt.mp4. Any tips as to what to add to get this process to work or another approach entirely would be greatly appreciated ! I figure it’s a simple bash thing I’m just ignorant of, but certainly need to learn how to do ! Thanks !

  • How can i preview FFmpeg audio/video modifications without processing an output in android application ? [FFMPEG, android]

    12 février 2019, par akash varlani

    Basically I am developing a video editing app that lets user choose some of their images and create video slide show with music.

    I am using FFMPEG to generate video slide show from images but the problem is I can only show preview of the video after executing FFMPEG command.

    Is googled so many blogs and all and I know there is a possible way available to display preview of the output.

    Check below image from reference app. I am developing something similar to this app. There is an option to replace the image in video. This app displays instant preview once I change the image.

    enter image description here

    Here is the link of the reference app if anyone wants to check :
    https://play.google.com/store/apps/details?id=com.newbiz.mvmaster

    Clicking an EXPORT button this app lets you generate video output. I can do that as I know FFMPEG and how to generate OUTPUT FILE using FFMPEG but what I don’t know is how to display quick preview of OUTPUT VIDEO before generating actual VIDEO FILE.

    On my UBUNTU device I can view output of FFMPEG command using FFPLAY tool but how to do the same on android device.

    Some useful link :
    http://androidwarzone.blogspot.com/2011/12/ffmpeg4android.html

  • ffmpeg unknown keyword invalid data found when processing input

    16 novembre 2020, par Adriaan

    I have a file ffmpeg_list_of_files.txt with the content

    



    file '.\Output_0\forces_vs_radii.pdf'
file '.\Output_1\forces_vs_radii.pdf'
file '.\Output_2\forces_vs_radii.pdf'
file '.\Output_3\forces_vs_radii.pdf'
file '.\Output_4\forces_vs_radii.pdf'
and so on...


    



    and then run ffmpeg -f concat -i ffmpeg_list_of_files.txt -c copy output.mkv as is stated at

    



    http://trac.ffmpeg.org/wiki/Concatenate

    



    I, unfortunately, get the error

    



    Line 1: unknown keyword ' ■f'
.\ffmpeg_list_of_files.txt: Invalid data found when processing input


    



    in Windows PowerShell in Windows 10.

    



    What am I doing wrong ?