Recherche avancée

Médias (0)

Mot : - Tags -/xmp

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

Autres articles (72)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

  • "Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work", RuntimeWarning

    23 juillet 2024, par goldie

    For a captcha solver I need to use FFmpeg on Windows 10. Warning when running the code for the first time :

    


    C:\Users\user\AppData\Roaming\Python\Python310\site-packages\pydub\utils.py:170: RuntimeWarning: Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work
  warn("Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work", RuntimeWarning)


    


    Running the script anyway while it required ffprobe I got :

    


    C:\Users\user\AppData\Roaming\Python\Python310\site-packages\pydub\utils.py:198: RuntimeWarning: Couldn&#x27;t find ffprobe or avprobe - defaulting to ffprobe, but may not work&#xA;  warn("Couldn&#x27;t find ffprobe or avprobe - defaulting to ffprobe, but may not work", RuntimeWarning)&#xA;Traceback (most recent call last):&#xA;  File "D:\Scripts\captcha\main.py", line 164, in <module>&#xA;    main()&#xA;  File "D:\Scripts\captcha\main.py", line 155, in main&#xA;    captchaSolver()&#xA;  File "D:\Scripts\captcha\main.py", line 106, in captchaSolver&#xA;    sound = pydub.AudioSegment.from_mp3(&#xA;  File "C:\Users\user\AppData\Roaming\Python\Python310\site-packages\pydub\audio_segment.py", line 796, in from_mp3&#xA;    return cls.from_file(file, &#x27;mp3&#x27;, parameters=parameters)&#xA;  File "C:\Users\user\AppData\Roaming\Python\Python310\site-packages\pydub\audio_segment.py", line 728, in from_file&#xA;    info = mediainfo_json(orig_file, read_ahead_limit=read_ahead_limit)&#xA;  File "C:\Users\user\AppData\Roaming\Python\Python310\site-packages\pydub\utils.py", line 274, in mediainfo_json&#xA;    res = Popen(command, stdin=stdin_parameter, stdout=PIPE, stderr=PIPE)&#xA;  File "C:\Program Files\Python310\lib\subprocess.py", line 966, in __init__&#xA;    self._execute_child(args, executable, preexec_fn, close_fds,&#xA;  File "C:\Program Files\Python310\lib\subprocess.py", line 1435, in _execute_child&#xA;    hp, ht, pid, tid = _winapi.CreateProcess(executable, args,&#xA;FileNotFoundError: [WinError 2] The system cannot find the file specified&#xA;</module>

    &#xA;

    I tried downloading it manually, editing environment variables, pasting them in the same folder as the script and installing with pip. FFmpeg works however my script doesn't.

    &#xA;

  • the problem using "yt-dlp —download-sections" [closed]

    15 avril 2024, par talent

    I tried to use "yt-dlp —download-sections" to download specific segment of YouTube video.

    &#xA;

    But I have confronted some error.

    &#xA;

    If I use the cammand as followed, it will be ok, and download the whole video successfully.

    &#xA;

    yt-dlp -P [path] [URL]&#xA;

    &#xA;

    But, if I add the "—download-sections" to download specific segment, it seems something wrong.&#xA;the command is as followed.

    &#xA;

    yt-dlp -P [path] --download-sections "*00:08:06-00:08:17" https://www.youtube.com/watch?v=6Vkmb4cUuLs &#xA;

    &#xA;

    the eccor message

    &#xA;

    Plus, the operation system is Windows. And I have used vpn(proxy).

    &#xA;

    ffmpeg configuration

    &#xA;

    I'd be tremendously appreciated if anyone can give me the early response to solve it !!!

    &#xA;

  • FFmpeg java.lang.UnsatisfiedLinkError dlopen failed : library "libavutil.so" not found in Vivo model device

    9 février 2024, par sejn

    Facing a lot of crashes in the Android Vivo devices with the above error. Can I restrict this to the Vivo models in Android.

    &#xA;

    I'm using the implementation 'com.arthenica:mobile-ffmpeg-full:4.4'

    &#xA;

    Fatal Exception: java.lang.UnsatisfiedLinkError dlopen failed: library "libavutil.so" not found&#xA;&#xA;init {&#xA;    try{&#xA;        System.loadLibrary("avutil")&#xA;        System.loadLibrary("avcodec")&#xA;        System.loadLibrary("avformat")&#xA;        System.loadLibrary("swscale")&#xA;        System.loadLibrary("avfilter")&#xA;    }&#xA;    catch (e:Exception){&#xA;        Log.i("error","${e.message}")&#xA;    }&#xA;}&#xA;

    &#xA;

    In app/build.gradle

    &#xA;

    &#xA;

    ndk &#xA;abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'

    &#xA;

    &#xA;

    Note : If I migrate to the latest version ffmpeg-kit-full:6.0-2

    &#xA;

    Clarifications :

    &#xA;

      &#xA;
    1. Shall I need to add this below in the code as well if I use the FFmpeg-kit
    2. &#xA;

    3. If I did not need to use means, does it make any issues in the app ?.(i.e) if I removed
    4. &#xA;

    5. Shall I need to add any additional loadlibrary in the init ?
    6. &#xA;

    7. Is there any simple fix for the above error for Oppo alone without migrating ?
    8. &#xA;

    9. Shall I need to add these architectures in ndk of my app ?
    10. &#xA;

    &#xA;

    &#xA;

    arm-v7a, arm-v7a-neon, arm64-v8a, x86 and x86_64 architectures

    &#xA;

    &#xA;

     init {&#xA;        try{&#xA;            System.loadLibrary("avutil")&#xA;            System.loadLibrary("avcodec")&#xA;            System.loadLibrary("avformat")&#xA;            System.loadLibrary("swscale")&#xA;            System.loadLibrary("avfilter")&#xA;        }&#xA;        catch (e:Exception){&#xA;            Log.i("error","${e.message}")&#xA;        }&#xA;    }&#xA;

    &#xA;