Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (17)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (5050)

  • Resque does not find ffmpeg

    17 décembre 2012, par d33pika

    I am using resque to queue some encoding jobs. I have workers that pick up these jobs and do some transcoding.
    The issue is system "mencoder .." works fine but system "ffmpeg .." throws not found and the same to with system "qt-faststart .."
    I installed mencoder using sudo apt-get install.
    ffmpeg and qt-faststart were built from source.
    So mencoder was in /usr/bin and the other two in /usr/local/bin.
    So, the next thing I tried was using full path in the system command, that also returned not found.
    Then I copied ffmpeg and qt-faststart into /usr/bin.. Still got "Not Found"
    My worker code runs standalone but when god runs it, ffmpeg and qt-fasstart fail to execute. Yes, I have god configured to watch resque. Now, I don't know what else to try ! Any ideas ?

  • What is the correct syntax and command in this shell_exec() case ?

    11 mai 2016, par mgeezy

    Please help me to find the right syntax and command in this line to fetch some metadata for the specified row and column :

    shell_exec('ffmpeg -i ' . $targetPath . -metadata album={echo $row_release['release_title'];} ' -b:a 320k '. $mp3);

    I am confused, especially with this part

    -metadata album={echo $row_release['release_title'];} ' -b:a

    Are echo and brackets OK, because it does not execute it.

    Thanks guys and girls !

  • The Method of Making Video Special Effect

    19 janvier 2019, par szhan

    I’ve been trying to use javacv libraries to make video effects.
    like this screenshot

    I’m trying to use ffmpeg’s watermarking method to cover the head. But I don’t know how to control the transparency and shape of the watermarking.

    watermark = "movie=./girl.png[watermark];[in][watermark]overlay=W-w-300:10:format=rgb[out]";
    FFmpegFrameFilter frameFilter = new FFmpegFrameFilter(watermark, width, height);