Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (88)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (9820)

  • doc/general : update avisynth docs with a way to install just the headers using CMake

    5 avril 2020, par Stephen Hutchinson
    doc/general : update avisynth docs with a way to install just the headers using CMake
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/general.texi
  • doc/general : Make the license status of the Android libraries clearer

    12 juin 2013, par Timothy Gu
    doc/general : Make the license status of the Android libraries clearer
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/general.texi
  • ffmpeg keeping full title when encoding

    14 mai 2020, par LordFenixNC

    I am trying to name the audio and sub files in the batch encode using the title tag in the meta data. the issue im running into is if the title says English Commentary it will only grab English or Jap uncut it will only grab Jap.

    &#xA;&#xA;

    $audioTracks = ffprobe $f.FullName -show_entries stream=index:stream_tags=title -select_streams a -of compact=p=0:nk=1 &#xA;$audioTracks = $audioTracks.split("")&#xA;foreach($audio in $audioTracks) {&#xA;    $ID = $audio.split("|")[0];&#xA;    $audioName = $audio.split("|")[1];&#xA;    ffmpeg -i $f.FullName -threads 0 -muxdelay 0 -y -map 0:$ID -codec aac -f segment -segment_time 10 -segment_list_size 0 -segment_list out/$f/audio/audio_"$audioName.m3u8" -segment_format mpegts out/$f/audio/"audio_$audioName%d.ts"&#xA;

    &#xA;