Recherche avancée

Médias (91)

Autres articles (108)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (11203)

  • FFMPEG Batch Copy Metadata from "Folder1File1.mp3" to "Folder2File1.mp3" in different folders

    27 février 2020, par Vektorz

    I have two separate files in separate folders with the same name and I would like to transfer the metadata from the file in "folder1" to "folder2".
    Then I would like to add a whole bunch of files fitting this same format and batch transfer all of the metadata information.

    From a stack exchange thread I’ve tried :

    "The following script will loop through the the files in one directory, find corresponding files in a second directory and then combine these two files into a third output directory

    dir1=FIRST DIRECTORY
    dir2=SECOND DIRECTORY
    output=OUTPUT DIRECTORY
    for file in $(ls $dir1); do
     ffmpeg -i "$dir1/$file" -i "$dir2/$file" -map 1 -c copy \
      # copies all global metadata from in0.mkv to out.mkv  
      -map_metadata 0 \
      # copies video stream metadata from in0.mkv to out.mkv
      -map_metadata:s:v 0:s:v \
      # copies audio stream metadata from in0.mkv to out.mkv
      -map_metadata:s:a 0:s:a \
      "$outdir/$file"
    done"

    But for the life of me I cannot get this to work properly and it is a bit overkill. He continues on saying :

    If you want to make something reuseable you could put this in a script with the following header (remove the assignment for dir1, dir2 and output in the script above). And then call it as script.sh dir1 dir2 outdir

    #!/bin/bash
    set -x errexit # exit immediately on error
    dir1="$1"
    dir2="$2"
    output="$3"

    And I am totally lost. Can someone please help me to get this to work and walk me through it a bit easier as I’m fairly inexperienced with code/FFMPEG.

    Thank you.

  • Revision d0f2377027 : Revert "Revert "Removal of legacy zbin_extra / zbin_oq_value."" This reverts co

    22 décembre 2014, par Jingning Han

    Changed Paths :
     Modify /test/vp9_quantize_test.cc


     Modify /vp9/common/vp9_rtcd_defs.pl


     Modify /vp9/encoder/arm/neon/vp9_quantize_neon.c


     Modify /vp9/encoder/vp9_block.h


     Modify /vp9/encoder/vp9_dct.c


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_encodemb.c


     Modify /vp9/encoder/vp9_quantize.c


     Modify /vp9/encoder/vp9_quantize.h


     Modify /vp9/encoder/x86/vp9_dct_sse2.c


     Modify /vp9/encoder/x86/vp9_dct_ssse3.c


     Modify /vp9/encoder/x86/vp9_highbd_quantize_intrin_sse2.c


     Modify /vp9/encoder/x86/vp9_quantize_sse2.c


     Modify /vp9/encoder/x86/vp9_quantize_ssse3_x86_64.asm



    Revert "Revert "Removal of legacy zbin_extra / zbin_oq_value.""

    This reverts commit 9946ee23e0a4c158e26a505b162a072f81b8a3be.

    Fix the ssse3 asm function.

    Change-Id : I07f77a63aa98087626e45c4e87aa5dcafc0b0b07

  • ffpyplayer with libx264 error : cannot locate symbol "avio_seek" referenced by "player.so"

    2 décembre 2016, par Gerasimov Mikhail

    Kivy’s ffpyplayer 3.2 can be built with python-for-android’s old toolchain recipe. I also want ffpyplayer to open more video formats so I try to add libx264 for ffmpeg2 recipe.

    I created separate recipe for libx264, here’s how I build lib :

    try ./configure \
     --cross-prefix=arm-linux-androideabi- \
     --sysroot="$NDKPLATFORM" \
     --host=arm-linux \
     --enable-pic \
     --disable-asm \
     --disable-cli \
     --disable-opencl \
     --enable-shared \
     --prefix=$BUILD_x264

    Here’s main part where I add libx264 to ffmpeg2 :

    debug "Activate flags for x264 / ffmpeg2"
    x264_CFLAGS="-I$BUILD_x264/include/"
    x264_LDFLAGS="-L$BUILD_x264/lib/ -Wl,-soname,libx264.so"

    Everything compiles fine, but I’m getting error when trying to use ffpyplayer on Android device :

    ffpyplayer - ImportError : dlopen failed : cannot locate symbol
    "avio_seek" referenced by "player.so"

    Any idea what can it be ?

    I have no knowledges in compiling libs so I would be grateful if you suggest me way where to go to find reason of this error.