Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (28)

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

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

  • How to install and use NACL ported library in our development environment

    19 mai 2014, par Devesh Agrawal

    i want to use ffmpeg nacl ported library in my project. i know we can install using using git. but in my develope environment git is not allowed. i have downloaded the zip file and unzipped it. and followed these steps :

    1. download
    2. unzip it : tar -xvjpf ffmpeg-2.1.3.tar.bz2
    3. go to Naclport folder : cd ffmpeg-2.1.3
    4. /home/devesh/ffmpeg-2.1.3 $./configure
    5. /home/devesh/ffmpeg-2.1.3 $make
    6. install the library : sudo make install

    now when i am trying to use this library header files my compiler not able to get it.

    Is GIT is the only way to install nacl ports ??

  • Modify code so each snippets start from begin instead end

    13 décembre 2022, par Ohiowizard

    source : https://davidwalsh.name/video-preview#comment-515168
    
the part of code that trim videos into snippets :

    


     # Loop and generate video snippets
    mkdir $tempdir
    interval=$(($length/$desiredsnippets-$starttimeseconds))
    for i in $(seq 1 $desiredsnippets)
    do
        # Format the second marks into hh:mm:ss format
        start=$(($(($i*$interval))+$starttimeseconds))
        formattedstart=$(printf "%02d:%02d:%02d\n" $(($start/3600)) $(($start%3600/60)) $(($start%60)))
        echo 'Generating preview part ' $i $formattedstart
        # Generate the snippet at calculated time
        ffmpeg -i $sourcefile -vf scale=$dimensions -preset fast -qmin 1 -qmax 1 -ss $formattedstart -t $snippetlengthinseconds -threads $(nproc) $tempdir/$i.mp4
    done


    


    `

    


    Video length is 3600 (60mins)
    
Desired snippets = 30, that mean 2mins each
    
It always start at 0:02:00 to 0:04:00 -> and so on
    
but i want it start at 0:00:00 (1st snippet) -> 0:02:00 (2nd snippet) -> (this put in code because it said invalid code format)

    


      

    • I want to make it trim from start of each snippets instead end of each snippets.
    • 


    • This code trim video into multiple parts(snippets) that set by user, and then merged all snippets into one video.
    • 


    


  • vaapi_vp9 : Mark as async-safe

    21 mars 2017, par Mark Thompson
    vaapi_vp9 : Mark as async-safe
    
    • [DH] libavcodec/vaapi_vp9.c