Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (35)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8259)

  • ffmpeg batch process issue mac

    22 octobre 2023, par e e

    I'm using ffmpeg to batch process all files(with names containing spaces) in a directory. The script is like :

    


    echo my converter
read -p "Enter give folder: " folder
echo '//////////////////////START CONVERTING FROM FOLDER///////////////////////'

find $folder -type f -name "*[[:space:]]*" | while read file; do
    release="${file%%.*}"'_t.mp4';
    echo "$file";
    ffmpeg -i "$file" -c copy "$release" -loglevel error -stats
    echo $release;
done


    


    the script searches all the files in the address and ffmpeg one by one. However the first file will always fail due to some unknown issues :

    


    [mpegts @ 0x7fb8e9904a40] Continuity check failed for pid 17 expected 2 got 3
[mpegts @ 0x7fb8e9904a40] Continuity check failed for pid 0 expected 0 got 2
[mpegts @ 0x7fb8e9904a40] Continuity check failed for pid 4096 expected 0 got 2
[mpegts @ 0x7fb8e9904a40] Continuity check failed for pid 256 expected 2 got 7
[mpegts @ 0x7fb8e9904a40] Packet corrupt (stream = 0, dts = 203523000).
/Users/xy/Downloads/aaa/aa vv.ts: corrupt input packet in stream 0
[NULL @ 0x7fb8e9905a40] Decoding VUI



    


    If there is only one file, the process works fine.
If comment out the ffmpeg command, it echoes as expected :

    


    /Users/xy/Downloads/aaa/aa vv_t.mp4
/Users/xy/Downloads/aaa/aa vv_t_t.mp4
/Users/xy/Downloads/aaa/aa vv.ts
/Users/xy/Downloads/aaa/aa vv_t.mp4
/Users/xy/Downloads/aaa/cc ee.ts
/Users/xy/Downloads/aaa/cc ee_t.mp4


    


    it first find the target files and then converts into another with different file names.
Any suggestions, thank you !!

    


  • lavc/tiff : Enable decoding of LinearRaw images

    29 août 2019, par Nick Renieris
    lavc/tiff : Enable decoding of LinearRaw images
    

    "LinearRaw" is a value that the PhotometricInterpretation tag can be set
    to on DNG images that contain color information for all channels instead
    of being bayer-encoded ("CFA" value).

    The DNG decoder is complete enough that we can enable this now.

    Sample :
    - http://www.rawsamples.ch/raws/nikon/SCANNER_NIKON_LS5000.DNG

    Signed-off-by : Nick Renieris <velocityra@gmail.com>

    • [DH] libavcodec/tiff.c
  • Revision ad484fc6be : Add support for armv7-win32-vs11 The arm assembly files are named .s after conv

    18 mai 2013, par Martin Storsjo

    Changed Paths :
     Add /build/arm-msvs/obj_int_extract.bat


     Modify /build/make/Makefile


     Modify /build/make/configure.sh


     Modify /build/make/gen_msvs_vcxproj.sh


     Modify /configure


     Modify /libs.mk



    Add support for armv7-win32-vs11

    The arm assembly files are named .s after conversion, to reuse
    as much of the existing makefile infrastructure for conversion to
    gas format as possible. Within the generated visual studio project,
    only the converted assembly sources are available, which might not
    be optimal for actually developing it, but is acceptable for
    just building the library.

    Multithreading is disabled since the traditional win32 threading
    functions aren't available on WinRT/Windows Phone 8.

    Building of vpx itself and the examples succeed, while building the
    tests fail due to them using functions not available in the
    windows store/windows phone API subsets - therefore the unit tests
    are disabled.

    This works for building in Visual Studio Express 2012 for Windows
    Phone, while Visual Studio Express 2012 for Windows 8 (for
    "Windows Store" apps) seems to reject the vcxproj files due to
    not supporting "classic style native application or managed
    projects". The built static library should be compatible with that
    platform though.

    Change-Id : Idcd7eca60bfaaaeb09392a9cd7a02e4a670e3b30