Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (53)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

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

Sur d’autres sites (8187)

  • Revision 0a0492611c : gen_msvs_proj : fix in tree configure under cygwin strip trailing '/' from paths

    13 juin 2014, par James Zern

    Changed Paths :
     Modify /build/make/gen_msvs_proj.sh


     Modify /build/make/gen_msvs_vcxproj.sh



    gen_msvs_proj : fix in tree configure under cygwin

    strip trailing ’/’ from paths, this is later converted to ’\’ which
    causes execution errors for obj_int_extract/yasm. vs10+ wasn’t affected
    by this issue, but make the same change for consistency.

    gen_msvs_proj :
    + add missing ’"’ to obj_int_extract call
    unlike gen_msvs_vcproj, the block is duplicated
    missed in : 1e3d9b9 build/msvs : fix builds in source dirs with spaces

    Change-Id : I76208e6cdc66dc5a0a7ffa8aa1edbefe31e4b130

  • Macroblock tree overhaul/optimization

    23 février 2014, par Jason Garrett-Glaser
    Macroblock tree overhaul/optimization
    

    Move the second core part of macroblock tree into an assembly function ;
    SIMD-optimize roughly half of it (for x86). Roughly 25-65% faster mbtree,
    depending on content.

    Slightly change how mbtree handles the tradeoff between range and precision
    for propagation.

    Overall a slight (but mostly negligible) effect on SSIM and 2% faster.

    • [DH] common/macroblock.c
    • [DH] common/mc.c
    • [DH] common/mc.h
    • [DH] common/x86/const-a.asm
    • [DH] common/x86/mc-a2.asm
    • [DH] common/x86/mc-c.c
    • [DH] common/x86/predict-a.asm
    • [DH] encoder/slicetype.c
    • [DH] tools/checkasm.c
  • Trouble requesting ffmpeg with pydub on Synology NAS

    9 mai 2019, par Marcus

    I have a Python script on my Synology which should make use of ffmpeg in combination with pydub. I installed ffmpeg via the community packages but when I run my script which runs smoothly on my local machine I get the shown error

    Already tried to define the absolute path of ffmpeg but didn´t work.

    /usr/lib/python2.7/site-packages/pydub/utils.py:193: RuntimeWarning: Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work
     warn("Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work", RuntimeWarning)
    Traceback (most recent call last):
     File "./track_append.py", line 30, in <module>
       artist_track = artist_track = AudioSegment.from_file(track_original)
     File "/usr/lib/python2.7/site-packages/pydub/audio_segment.py", line 665, in from_file
       info = mediainfo_json(orig_file)
     File "/usr/lib/python2.7/site-packages/pydub/utils.py", line 263, in mediainfo_json
       res = Popen(command, stdin=stdin_parameter, stdout=PIPE, stderr=PIPE)
     File "/usr/lib/python2.7/subprocess.py", line 711, in __init__
       errread, errwrite)
     File "/usr/lib/python2.7/subprocess.py", line 1343, in _execute_child
       raise child_exception
    OSError: [Errno 2] No such file or directory
    </module>