Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (78)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10496)

  • Batch-converting multimedia-files on Command-Line using find and ffmpeg (Linux)

    11 mai 2018, par free_speech

    For converting more Audio-Files (Let’s say, FLAC to MP3) in the same folder on Command-Line, I formerly used

    find ./ -name "*.flac" -exec ffmpeg -i "{}" -b:a 320k "{}".mp3 \;

    but the problem is that the resulting MP3-Files are named like Artist - Title.flac.mp3.
    This doesn’t even surprise me, but what do I have to type if I want to avoid the ".flac.mp3"-Filenames ?
    The converted Files should be named like Artist - Title.mp3, not this .flac.mp3
    I didn’t yet find a way to solve this problem ...
    Thanks.

  • ffmpeg_opt : remove unused variable and undocumented and not working command line...

    31 mai 2014, par Michael Niedermayer
    ffmpeg_opt : remove unused variable and undocumented and not working command line option
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] ffmpeg_opt.c
  • ffmpeg crash when input video got no audio line

    16 mai 2020, par sisterbrother

    I got a ffmpeg script which concate 3 videos and works fine when the input video $fp got a audio line ! The first and last input video ($vid1) can be ignored for this topic cause they always have a audio line

    &#xA;&#xA;

    The video input $fp instead may sometimes have no audio and cause the script to crash with error :

    &#xA;&#xA;

    Stream specifier &#x27;:a&#x27; in filtergraph description &#x27;then full code comes here&#x27; matches no streams.&#xA;&#xA;

    &#xA;&#xA;

    Related to this link : https://superuser.com/questions/1457683/ffmpeg-ignore-audio-export-if-no-stream-present

    &#xA;&#xA;

    You can use this code to archive what I want :

    &#xA;&#xA;

    -map "0:v" -map "0:a?"&#xA;

    &#xA;&#xA;

    However in my code the map is already set and iam not really familiar with ffmpeg and my code was mostly from google so iam not really familiar with ffmpeg logics..

    &#xA;&#xA;

    How to include this to my current code ? Anybody know how to inlcude this or to fix my code that its go further when input video $fp got no audio line ?

    &#xA;&#xA;

    ffmpeg -y -i "$vid1" -i "$fp" -i "$vid1" -stream_loop -1 -i "$audio" -filter_complex \&#xA;"[0:v]scale=$cResolution:force_original_aspect_ratio=decrease,pad=$cResolution:(ow-iw)/2:(oh-ih)/2,setsar=1,fps=30,format=yuv420p[v0]; \&#xA; [1:v]scale=$cResolution:force_original_aspect_ratio=decrease,pad=$cResolution:(ow-iw)/2:(oh-ih)/2,setsar=1,fps=30,format=yuv420p[v1]; \&#xA; [2:v]scale=$cResolution:force_original_aspect_ratio=decrease,pad=$cResolution:(ow-iw)/2:(oh-ih)/2,setsar=1,fps=30,format=yuv420p[v2]; \&#xA; [0:a]aformat=sample_rates=48000:channel_layouts=stereo[a0]; \&#xA; [1:a]aformat=sample_rates=48000:channel_layouts=stereo[a1]; \&#xA; [2:a]aformat=sample_rates=48000:channel_layouts=stereo[a2]; \&#xA; [v0][a0][v1][a1][v2][a2]concat=n=3:v=1:a=1[v][a]; \&#xA; [a][3]amix=duration=first[a]; \&#xA; [v]drawtext=text=&#x27;example..&#x27;:y=h-line_h-$h3:x=w/30*mod(t\,20):enable=&#x27;gt(mod(t,$dr2),$Introdr_rounded)&#x27;[v]; \&#xA; [v]drawtext=text=&#x27;example..&#x27;:y=h-line_h-$hcentral:x=w/20*mod(t\,100):enable=&#x27;gt(mod(t,$dr2),$Introdr_rounded)&#x27;[v]; \&#xA; [v]drawtext=text=&#x27;example..&#x27;:y=h-line_h-23:x=w/30*mod(t\,20):enable=&#x27;gt(mod(t,$dr2),$Introdr_rounded)&#x27;[v]" \&#xA; -map "[v]" -map "[a]" -c:v libx264 -crf 22 -preset veryfast -c:a aac -b:a 256k -movflags &#x2B;faststart "$fp_dest"&#xA;

    &#xA;