Recherche avancée

Médias (91)

Autres articles (101)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (5337)

  • ffmpeg : Remove audio from nested folders filled with videos without renaming

    18 novembre 2022, par Maxwell

    I have a dataset that is filled with videos, only the visual component of the videos is useful to me so I would like remove the audio data to save space and hopefully improve load times. How can I accomplish this with ffmpeg ? Furthuremore, the file names must be kept the same. The dataset is ucf101 and is formated in 101 sub-folders full of .avi videos 7gb. I would like to use windows 10 cmd.

    


  • Find the files that have been modified in last 24 Hours only once(skip if its modified more than once) [duplicate]

    4 janvier 2020, par Vijay Chandra

    Im using this command to get all modified files in the last 24 hours in ubuntu,
    find -type f -name "*.mp4" -mtime -1 -printf "%f\n"
    How can i modify this to detect same file only once which means if same file is modified more than 1 time in the last 24 hours,It shouldnt consider this file,It should skip the file,Is there anyway to do this ?
    I need this to create a watermarking script which will find the latest files within 24hours and save the list to a txt file and with the help of this text file,I use ffmpeg to watermark the videos and move them to original location.If i do this,the find command is considering the new updated video as modified file and adding watermark again and again,The process isnt getting stopped,Someone please help to fix this.

    My code is attached below :

    #!/bin/bash find -type f -name "*.mp4" -mtime -1 -printf "%f\n" >> /home/domain.com/public_html/admin_panel/public_html/uploads/mp4/temp/file.txt filename='/home/domain.com/public_html/admin_panel/public_html/uploads/mp4/temp/file.txt' all_lines=`cat $filename` for item in $all_lines; do  cp $item /home/domain.com/public_html/admin_panel/public_html/uploads/mp4/temp ffmpeg -i $item -i watermark.png -filter_complex "[1][0]scale2ref=w='iw*30/100':h='ow/mdar'[wm][vid];[vid][wm]overlay=(main_w-overlay_w):(main_h-overlay_h)"
    -y /home/domain.com/public_html/admin_panel/public_html/uploads/mp4/temp/$item
    done
  • FFMPEG converted file for jwplayer shows black [migrated]

    24 octobre 2013, par Karolis Narkevičius

    im new to ffmpeg, and I'm trying to convert it to mp4 to play on jwplayer, the video converts, the sound is good, but all i can see is black color, maybie anyone knows the answer to this problem ?

    ffmpeg -y -i Bear.wmv -vcodec libx264 -b:v 1000k -bufsize 1000k -preset:v ultrafast -movflags +faststart -crf 0 -vf scale=800:400 -ab 128k -vsync 2 -strict -2 outas.mp4

    my ffmpeg code
    my ffmpeg version 2.0.1