Recherche avancée

Médias (91)

Autres articles (33)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4283)

  • ffmpeg in bash only works on every second file

    5 août 2016, par kay

    EDIT :

    The Solution is to change the original ffmpeg-call below to the following :
    ffmpeg -nostdin -loglevel 16 -i "$dir/$var" -map_channel 0.0.0 "$left" -map_channel 0.0.1 "$right"
    where the -nostdin is the crucial thing.
    For reference see apply ffmpeg to many files (comment by macmichael01)


    I’m trying to convert all .wav-files in a given directory and it’s subdirectorys into two mono-files each with the following bash script. The crucial part is almost at the bottom - the ffmpeg call :

    #!/bin/bash
    # "[One] Stereo [file] to two mono [files] - stereo22mono"

    # Syntax ffmpeg siehe: https://trac.ffmpeg.org/wiki/AudioChannelManipulation


    ls -R $1 > .s22mtmp.txt

    while read -r line || [[ -n "$line" ]]; do

       var=$line
       tst=$var
       tst="${tst%:}"

       if [ -d "${tst%./}" ]       # is directory name
       then
           dir=$tst

       elif [ -f "$dir/$var" ]     # is file name
       then
           left=$dir/left_$var
           right=$dir/right_$var

           #loglevel 16 = only errors
           # -i ...-> input file
           # ffmpeg ... [SOURCE] ... [TARGET1] ... [TARGET2]
           ffmpeg -loglevel 16 -i "$dir/$var" -map_channel 0.0.0 "$left" -map_channel 0.0.1 "$right"
       fi

    done < .s22mtmp.txt


    rm .s22mtmp.txt

    It almost works - besides the fact, that it only does it’s job on only every second file, although the for-loop correctly goes through all files (watched it with echo) and calls ffmpeg.
    I thought it might be that ffmpeg has not finished it’s assigned work by the time it is asked to work on the next file and therefore just refuses, which seems to be true.
    Because I made one try with disowning every call of ffmpeg like so :

    ffmpeg -loglevel 16 -i "$dir/$var" -map_channel 0.0.0 "$left" -map_channel 0.0.1 "$right" & disown

    This worked almost, the problem was just that kind of hundreds of processes and multiple times more threads where starting to run and wouldn’t complete in a reasonable time, so I arborted. :D
    But at least it didn’t skip every second file anymore with that kind of call.

    Can anyone give me a hint, how to get this done ? Would be very thankful.. it’s actually the first time I’m trying with bash scripts.
    Thanks in advance !

  • video editing application on iOS - use AVFoundation or FFMpeg ? [on hold]

    9 novembre 2016, par Willie

    Hi,we will develop a video editing app for ios, users can add text,title or marks on video, and they can also add music, effects or filter for the video. finally, the most important is we can merge the everything that users added in this video and export it. just like iMovie on iOS.
    AVFoundation is qualified for the job ? and what’s the difference between AVFoundation and FFMPeg in iOS ?
    thanks!

  • Some Links and Tutorials to learn ffmpeg

    9 juillet 2013, par URAndroid

    Can anyone provide me some good and easy link and tutorials to learn ffmpeg for android development.