Recherche avancée

Médias (91)

Autres articles (28)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6325)

  • Revision abfd2a4880 : Merge "Fixed the buffer overflow issue" into experimental

    21 février 2013, par Jingning Han

    Changed Paths : Modify /vp9/encoder/vp9_onyx_if.c Merge "Fixed the buffer overflow issue" into experimental

  • "Droplet" batch script - filenames containing ampersands

    16 août 2014, par stephenwade

    I’m trying to create a batch file that can have other files dropped onto it. Specifically, I’m using ffmpeg to edit audio files produced by a handheld voice recorder. The problem is when using filenames with ampersands (&). Even when quoting the input, anything after the & is dropped off, but only when files are dropped onto it ; if the filename input is typed on the command line, the script works fine. Before the cmd window closes, I briefly see the rest of the filename with an error saying it is not recognized as a valid command.

    Here’s my script :

    rem Change to drive and directory of input file
    % d1
    cd % p1
    

    rem ffmpeg : mix to one channel, double the volume
    %HOMEDRIVE%%HOMEPATH%\ffmpeg.exe -i "% nx1" -ac 1 -vol 1024 "% n1 fixed% x1"

    pause

    Here’s what appears on the command line, after dropping "ch17&18.mp3" :

    C :\Users\computergeeksjw\Desktop>C :\Users\computergeeksjw\ffmpeg.exe -i "ch17" -ac 1 -vol 1024 "ch17 fixed"
    [...]
    ch17 : No such file or directory
    

    In case it matters : I’m using the Windows 8 Developer Preview. Is this causing my problem ? Does the same error occur on Windows 7 or earlier ?

  • command for ffmpeg encode h264 baseline profile level 1

    25 décembre 2011, par Morteza M.

    Can anyone suggest a command to encode video to h264 baseline profile ( level 1) ?

    Here is a link for reference : http://blog.mediacoderhq.com/h264-profiles-and-levels/

    I used this command but ffmpeg says it is Main profile not baseline.

    ffmpeg -i <source> -vcodec libx264 -coder 0 -flags +loop+mv4 \
    -partitions +parti4x4+parti8x8+parti4x4+partp8x8+partb8x8 -me_method hex -subq 7 \
    -trellis 1 -refs 5 -bf 0 -flags2 +mixed_refs -coder 0 -me_range 16 -threads 2 \
    -s 240x160 -b:v 64k -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 \
    -qmin 10 -qmax 51 -qdiff 4 -strict experimental -acodec aac -ac 1 -ab 48000 \
    -f mpegts udp://127.0.0.1:10006?pkt_size=1316
    </source>