Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (45)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (7561)

  • ffmpeg : how to draw epoch timestamp on each frame

    25 juillet 2012, par Fshly

    I did some homework here :

    To draw timecode on ffmpeg :

    ffmpeg -i in.mp4 -vf "drawtext=fontfile=/usr/share/fonts/truetype/DroidSans.ttf: timecode='09\:57\:00\:00': r=25: \
    x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=0x00000000@1" -an -y out.mp4

    To output epoch in Linux :

    date +%s

    My question is how to draw timestamp in epoch on each frame in ffmpeg ?

  • Using FFMPEG for online video hosting

    20 décembre 2011, par Kyle Monti

    I've been looking around for using FFMPEG and PHP. I've noticed you can use FFMPEG with HTML5. I've read the documentation of the FFMPEG's website and it's far beyond my knowledge. I have an open source document of a 'premade' .php file that stores the information to the database and tells it to execute to the ffmpeg function. However, they use mp4box and FLVtool2.

    The array's of video size, frame rates, etc. are quite easy to understand. When designing this from scratch I really have not idea where to start.

    I've defined the variables that will be recorded once the file is uploaded, thereafter, checking to see if the file exists and recording it the database.

    The real question is using mp4box and flvtool2 to convert all videos right to .flv so you can use flowplayer or jwplayer then telling to convert.

    EDIT : Sorry to edit, I've seen many posts about the same question but they all relate to old versions of the software, will the php carry over to newer versions (probably could find out on their website if they had a more in depth HOWTO for website streaming)

  • Batch statement to convert mp3 to aac

    20 décembre 2011, par Soham Dasgupta

    My question is straight forward. I have tow commands to convert a single mp3 file to aac in tow pass. Here are the commands -

    ffmpeg -i input.mp3 -f wav - | neroAacEnc -ignorelength -q 0.5 -if - -of output.m4a

    ffmpeg -i output.m4a -y -vn -acodec libvo_aacenc -ab 128k -ar 48000 -ac 2 final.aac

    Please guide me to some script where I'll be able to convert a folder full to mp3 files in one shot. Suppose if its a VBScript then would it ask for the folders where mp3 are kept.

    Also a question about libvo_aacenc codec, is it the best codec to convert to aac if not then what codec should I use for the second pass for converting m4a to aac with highest compression but good quality. The above settings does not produce too good compression. Please help. Am very new to audio encoding.