Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (31)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • 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" ;

  • 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.

Sur d’autres sites (4046)

  • avformat/segafilmenc : Don't store packet info in linked list

    17 juillet 2020, par Andreas Rheinhardt
    avformat/segafilmenc : Don't store packet info in linked list
    

    Up until now, the Sega FILM muxer would store some information about
    each packet in a linked list. When writing the trailer, the information
    in said linked list would be used to write a table in the file header.
    Each entry in said table is 16 bytes long, but each entry of the linked
    list is 32 bytes long (assuming 64 bit pointer and no padding).
    Therefore it makes sense to remove the linked list and write the array
    entries directly into a dynamic buffer while writing the packet (this is
    possible because the table entries don't depend on any information not
    available when writing the packet (the offset is not relative to the
    beginning of the file, but to the end of the table). This also
    simplifies writing the array at the end (there is no need to traverse a
    linked list).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/segafilmenc.c
  • Better way to use ffmpeg with vidstab and encoding 2 pass

    17 juin 2020, par Guillaume B.

    I scan old 8mm films &#xA;so I have folder with set of jpeg

    &#xA;&#xA;

    I transform them to films using ffmpeg ( I choose x264 2 pass encoding)

    &#xA;&#xA;

    //On all folder that start by 1 I launch the pass1 for x264&#xA;&#xA;for f in 1*/ ; do cd "$f"; ffmpeg -y -r 18 -i img%05d.jpg -c:v libx264 -s 1200x898 -b:v 3000k -pass 1 -an -f mp4 /dev/null; cd ..; done&#xA;&#xA;//On all folder that start by 1 I launch the pass2 x264&#xA;&#xA;for f in 1*/ ; do cd "$f"; ffmpeg -y -r 18 -i img%05d.jpg -c:v libx264 -s 1200x898 -b:v 3000k -pass 2 ../"`echo ${PWD##*/}`.mp4"; cd ..; done&#xA;

    &#xA;&#xA;

    —> Before I have set of folder with jpeg

    &#xA;&#xA;

    &#xA;

    1965-FamilyStuff01\img1111.jpg,..,img9999.jpg

    &#xA; &#xA;

    1965-FamilyStuff02\img1111.jpg,..,img9999.jpg

    &#xA;

    &#xA;&#xA;

    and I get

    &#xA;&#xA;

    &#xA;

    1965-FamilyStuff01.mp4

    &#xA; &#xA;

    1965-FamilyStuff02.mp4

    &#xA;

    &#xA;&#xA;

    then I discover vidstab that also need 2 pass

    &#xA;&#xA;

    // Stabilize every Video of a folder

    &#xA;&#xA;

    mkdir stab;for f in ./*.mp4 ; do echo "Stabilize $f" ; &#xA;ffmpeg -i "$f" -vf vidstabdetect=shakiness=5:accuracy=15:stepsize=6:mincontrast=0.3:show=2 -y -f mp4 /dev/null; &#xA;ffmpeg -i "$f" -vf vidstabtransform=smoothing=30:input="transforms.trf":interpol=linear:crop=black:zoom=0:optzoom=1,unsharp=5:5:0.8:3:3:0.4 -y "stab/$f" &#xA;; done; rm transforms.trf;&#xA;

    &#xA;&#xA;

    But I ask myself, that perhaps the order is not correct or perhaps there is a way to do the encoding with vidstab in less than 4 pass (2 pass for x264 encoding then 2 pass for vidstab)&#xA;or perhaps the order should be change to optimize quality of film output)

    &#xA;

  • Better way to use ffmpeg with vidstab and encoding 2 pass

    17 juin 2020, par Guillaume B.

    I scan old 8mm films&#xA;so I have folder with set of jpeg

    &#xA;

    I transform them to films using ffmpeg ( I choose x264 2 pass encoding)

    &#xA;

    //On all folder that start by 1 I launch the pass1 for x264&#xA;&#xA;for f in 1*/ ; do cd "$f"; ffmpeg -y -r 18 -i img%05d.jpg -c:v libx264 -s 1200x898 -b:v 3000k -pass 1 -an -f mp4 /dev/null; cd ..; done&#xA;&#xA;//On all folder that start by 1 I launch the pass2 x264&#xA;&#xA;for f in 1*/ ; do cd "$f"; ffmpeg -y -r 18 -i img%05d.jpg -c:v libx264 -s 1200x898 -b:v 3000k -pass 2 ../"`echo ${PWD##*/}`.mp4"; cd ..; done&#xA;

    &#xA;

    —> Before I have set of folder with jpeg

    &#xA;

    &#xA;

    1965-FamilyStuff01\img1111.jpg,..,img9999.jpg

    &#xA;

    1965-FamilyStuff02\img1111.jpg,..,img9999.jpg

    &#xA;

    &#xA;

    and I get

    &#xA;

    &#xA;

    1965-FamilyStuff01.mp4

    &#xA;

    1965-FamilyStuff02.mp4

    &#xA;

    &#xA;

    then I discover vidstab that also need 2 pass

    &#xA;

    // Stabilize every Video of a folder

    &#xA;

    mkdir stab;for f in ./*.mp4 ; do echo "Stabilize $f" ; &#xA;ffmpeg -i "$f" -vf vidstabdetect=shakiness=5:accuracy=15:stepsize=6:mincontrast=0.3:show=2 -y -f mp4 /dev/null; &#xA;ffmpeg -i "$f" -vf vidstabtransform=smoothing=30:input="transforms.trf":interpol=linear:crop=black:zoom=0:optzoom=1,unsharp=5:5:0.8:3:3:0.4 -y "stab/$f" &#xA;; done; rm transforms.trf;&#xA;

    &#xA;

    But I ask myself, that perhaps the order is not correct or perhaps there is a way to do the encoding with vidstab in less than 4 pass (2 pass for x264 encoding then 2 pass for vidstab)&#xA;or perhaps the order should be change to optimize quality of film output)

    &#xA;